bzellinger 0 Posted October 6, 2019 Posted October 6, 2019 https://forum.kodi.tv/showthread.php?tid=347428 Would the Emby for Kodi team consider using the new TVTunes to sync themes?
Solution loomes 40 Posted October 8, 2019 Solution Posted October 8, 2019 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. 1
Recommended Posts