mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-10 06:54:21 +00:00
[15] Fix for #1277
This commit is contained in:
parent
b53a801fe6
commit
89d972ff5d
2 changed files with 3 additions and 2 deletions
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
1.18.3-develop14
|
||||
1.18.3-develop15
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue