Jump to content

New TVTunes


bzellinger
Go to solution Solved by loomes,

Recommended Posts

  • Solution
loomes

Edit the file: entrypoint/default.py to this:

   
 if xbmc.getCondVisibility('System.HasAddon(script.tvtunes)'):
        tvtunes = xbmcaddon.Addon(id="script.tvtunes")
        tvtunes.setSetting('custom_path_enable', "true")
        tvtunes.setSetting('custom_path', library)
        LOG.info("TV Tunes custom path is enabled and set.")
   + elif xbmc.getCondVisibility('System.HasAddon(service.tvtunes)'):
   +     tvtunes = xbmcaddon.Addon(id="service.tvtunes")
   +     tvtunes.setSetting('custom_path_enable', "true")
   +    tvtunes.setSetting('custom_path', library)
   +     LOG.info("TV Tunes custom path is enabled and set.")
    else:
        dialog("ok", heading="{emby}", line1=_(33152))

With this change the new version of TvTunes work with the latest Emby for Kodi Addon.

  • Like 1
Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...