[15] Fix for #1277

This commit is contained in:
meisnate12 2023-01-23 14:16:13 -05:00
parent b53a801fe6
commit 89d972ff5d
2 changed files with 3 additions and 2 deletions

View file

@ -1 +1 @@
1.18.3-develop14
1.18.3-develop15

View file

@ -448,7 +448,8 @@ class ConfigFile:
"language": check_for_attribute(self.data, "language", parent="tmdb", default="en"),
"expiration": check_for_attribute(self.data, "cache_expiration", parent="tmdb", var_type="int", default=60, int_min=1)
})
region = check_for_attribute(self.data, "region", parent="tmdb", test_list=self.TMDb.iso_3166_1, default_is_none=True)
regions = {k.upper(): v for k, v in self.TMDb.iso_3166_1.items()}
region = check_for_attribute(self.data, "region", parent="tmdb", test_list=regions, default_is_none=True)
self.TMDb.region = str(region).upper() if region else region
logger.info(f"TMDb Connection {'Failed' if self.TMDb is None else 'Successful'}")
else: