From b76ff63b483645ce9e88009ffd41b2684c76373a Mon Sep 17 00:00:00 2001 From: Jeroen De Meerleer <me@jeroened.be> Date: Mon, 21 Apr 2025 14:26:50 +0200 Subject: [PATCH] Update movies.py Since kodi piers standard version is changed to 1. Sourced from the MyVideosDatabase and https://github.com/xbmc/xbmc/blob/c0be4a8e34263cb939e453dbb4ce3430b46a458c/xbmc/video/VideoManagerTypes.h#L21 --- jellyfin_kodi/objects/kodi/movies.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jellyfin_kodi/objects/kodi/movies.py b/jellyfin_kodi/objects/kodi/movies.py index 14fba843..5fe29293 100644 --- a/jellyfin_kodi/objects/kodi/movies.py +++ b/jellyfin_kodi/objects/kodi/movies.py @@ -158,7 +158,7 @@ class Movies(Kodi): # Sets all existing movies without a version to standard version for entry in self.cursor.fetchall(): - self.add_videoversion(entry[0], entry[1], "movie", "0", 40400) + self.add_videoversion(entry[0], entry[1], "movie", "1", 40400) changes = True LOG.info("Omega database migration is complete")