Remove Rotten Tomatoes

This commit is contained in:
TrueTechy 2019-11-05 21:00:30 +00:00
commit b692f34d07
20 changed files with 0 additions and 153 deletions

View file

@ -61,9 +61,6 @@ class Movies(KodiDb):
update = False
LOG.info("MovieId %s missing from kodi. repairing the entry.", obj['MovieId'])
if not settings('syncRottenTomatoes.bool'):
obj['CriticRating'] = None
obj['Path'] = API.get_file_path(obj['Path'])
obj['LibraryId'] = library['Id']
obj['LibraryName'] = library['Name']

View file

@ -77,15 +77,7 @@ class Setup(object):
LOG.info("Artwork caching: %s", settings('enableTextureCache.bool'))
self._is_empty_shows()
LOG.info("Sync empty shows: %s", settings('syncEmptyShows.bool'))
self._is_rotten_tomatoes()
LOG.info("Sync rotten tomatoes: %s", settings('syncRottenTomatoes.bool'))
"""
if compare_version(cached or minimum, "3.0.24") <= 0:
self._is_rotten_tomatoes()
LOG.info("Sync rotten tomatoes: %s", settings('syncRottenTomatoes.bool'))
"""
# Setup completed
settings('MinimumSetup', minimum)
@ -115,11 +107,6 @@ class Setup(object):
value = dialog("yesno", heading="{jellyfin}", line1=_(33100))
settings('syncEmptyShows.bool', value)
def _is_rotten_tomatoes(self):
value = dialog("yesno", heading="{jellyfin}", line1=_(33188))
settings('syncRottenTomatoes.bool', value)
def _is_music(self):
value = dialog("yesno", heading="{jellyfin}", line1=_(33039))