From 7bb57679803a1ef1c43d4545fc5f41fca0ba7d85 Mon Sep 17 00:00:00 2001 From: Erwin Broekhuis Date: Sat, 4 Apr 2026 19:27:36 +0200 Subject: [PATCH] Fix: Changed TVTunes addon ID from script- to service.tvtunes. --- jellyfin_kodi/entrypoint/default.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jellyfin_kodi/entrypoint/default.py b/jellyfin_kodi/entrypoint/default.py index bf041dfc..5f335439 100644 --- a/jellyfin_kodi/entrypoint/default.py +++ b/jellyfin_kodi/entrypoint/default.py @@ -1159,9 +1159,9 @@ def get_themes(api_client): if not xbmcvfs.exists(library + "/"): xbmcvfs.mkdir(library) - if xbmc.getCondVisibility("System.HasAddon(script.tvtunes)"): + if xbmc.getCondVisibility("System.HasAddon(service.tvtunes)"): - tvtunes = xbmcaddon.Addon(id="script.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.")