mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-10 06:54:21 +00:00
ignore template variables when looking for blank secrets
This commit is contained in:
parent
4990c91590
commit
0a959ad670
1 changed files with 1 additions and 1 deletions
|
@ -327,7 +327,7 @@ class ConfigFile:
|
|||
|
||||
def check_next(next_data):
|
||||
if isinstance(next_data, dict):
|
||||
return {k: check_next(v) for k, v in next_data.items()}
|
||||
return {k: check_next(v) if k != "template_variables" else v for k, v in next_data.items()}
|
||||
elif isinstance(next_data, list):
|
||||
return [check_next(d) for d in next_data]
|
||||
else:
|
||||
|
|
Loading…
Reference in a new issue