Skip to content

"New Episodes" disabled in settings not working #100

@kodi8r

Description

@kodi8r

"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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions