From a89e05a5aac7c69068ec429a101a63b050d4343d Mon Sep 17 00:00:00 2001 From: jxxghp Date: Wed, 16 Aug 2023 10:28:43 +0800 Subject: [PATCH] fix MediaServerItem --- app/modules/emby/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/modules/emby/__init__.py b/app/modules/emby/__init__.py index 07a3d0b8..bf957460 100644 --- a/app/modules/emby/__init__.py +++ b/app/modules/emby/__init__.py @@ -139,7 +139,7 @@ class EmbyModule(_ModuleBase): title=item.get("title"), original_title=item.get("original_title"), year=item.get("year"), - tmdbid=item.get("tmdbid"), + tmdbid=int(item.get("tmdbid")) if item.get("tmdbid") else None, imdbid=item.get("imdbid"), tvdbid=item.get("tvdbid"), path=item.get("path"),