From 3ce8a49282e34101b2deb39527cf26ce50cb5f5c Mon Sep 17 00:00:00 2001 From: Zoe Roux Date: Wed, 15 May 2024 00:06:06 +0200 Subject: [PATCH] Fix original language missing on series tvdb --- scanner/providers/implementations/thetvdb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scanner/providers/implementations/thetvdb.py b/scanner/providers/implementations/thetvdb.py index c8bb6e56..73147a0b 100644 --- a/scanner/providers/implementations/thetvdb.py +++ b/scanner/providers/implementations/thetvdb.py @@ -290,7 +290,7 @@ class TVDB(Provider): ) trans = { normalize_lang(lang): ts - for (lang, ts) in zip(self._languages, translations) + for (lang, ts) in zip(languages, translations) if ts is not None } ret = ret["data"]