mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-10 06:54:21 +00:00
[25] fix for #1864
This commit is contained in:
parent
94ce807450
commit
9eeede4af1
2 changed files with 2 additions and 2 deletions
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
1.20.0-develop24
|
||||
1.20.0-develop25
|
||||
|
|
|
@ -918,7 +918,7 @@ class ConfigFile:
|
|||
default_path = os.path.join(default_dir, f"{str(library_name)}_Metadata_Backup.yml")
|
||||
if "path" not in input_dict:
|
||||
logger.warning(f"Config Warning: path attribute not found using default: {default_path}")
|
||||
if "path" in input_dict and not input_dict["path"]:
|
||||
elif "path" in input_dict and not input_dict["path"]:
|
||||
logger.warning(f"Config Warning: path attribute blank using default: {default_path}")
|
||||
else:
|
||||
default_path = input_dict["path"]
|
||||
|
|
Loading…
Reference in a new issue