From 03fb7e149a1c49e023e1ef8f25e48f612ddec535 Mon Sep 17 00:00:00 2001 From: jxxghp Date: Sat, 12 Aug 2023 08:23:23 +0800 Subject: [PATCH] fix tmdbinfo --- app/modules/thetvdb/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/modules/thetvdb/__init__.py b/app/modules/thetvdb/__init__.py index ee333894..c2488fa8 100644 --- a/app/modules/thetvdb/__init__.py +++ b/app/modules/thetvdb/__init__.py @@ -12,7 +12,7 @@ class TheTvDbModule(_ModuleBase): tvdb: tvdb_api.Tvdb = None def init_module(self) -> None: - self.tvdb = tvdb_api.Tvdb(apikey=settings.TVDB_API_KEY) + self.tvdb = tvdb_api.Tvdb(apikey=settings.TVDB_API_KEY, cache=False, select_first=True) def stop(self): pass