mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2025-12-13 02:23:18 +00:00
Remove Rotten Tomatoes
This commit is contained in:
parent
527ae965f0
commit
b692f34d07
20 changed files with 0 additions and 153 deletions
|
|
@ -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']
|
||||
|
|
|
|||
|
|
@ -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))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue