mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-10 06:54:21 +00:00
[5] fix overwriting external vars
This commit is contained in:
parent
9ebf2e178b
commit
896c9b9e74
2 changed files with 2 additions and 2 deletions
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
1.19.0-develop4
|
||||
1.19.0-develop5
|
||||
|
|
|
@ -312,7 +312,7 @@ class DataFile:
|
|||
added_vars.pop(input_key)
|
||||
elif overwrite_call:
|
||||
variables[input_key] = input_value
|
||||
else:
|
||||
elif input_key not in added_vars:
|
||||
added_vars[input_key] = input_value
|
||||
for k, v in added_vars.items():
|
||||
if k not in variables:
|
||||
|
|
Loading…
Reference in a new issue