Tempest0580 / tempest

Kodi Addon
24 stars 8 forks source link

"New Episodes" disabled in settings not working #100

Open kodi8r opened 3 years ago

kodi8r commented 3 years ago

"New Episodes" still show up on main menu even after it is disabled in add-on settings. I have found a fix by editing(swapping "True & False") in the navigator.py file as follows:

from:

"if (trackIndicators is True and not control.setting('tv.widget.alt') == '0') or (traktIndicators is False and not control.setting('tv.widget') == '0'): self.addDirectoryItem(32006, 'tvWidget', 'latest-episodes.png', 'DefaultRecentlyAddedEpisodes.png')

to:

"if (trackIndicators is False and not control.setting('tv.widget.alt') == '0') or (traktIndicators is True and not control.setting('tv.widget') == '0'): self.addDirectoryItem(32006, 'tvWidget', 'latest-episodes.png', 'DefaultRecentlyAddedEpisodes.png')

New Episodes display settings can now be controlled by the Tempest addon settings.

Tempest is awesome & my go to addon for movies & tv shows in my personal build thank you