If firstRun is true, ignore any seen wizards
This commit is contained in:
parent
9aa51d4f74
commit
92c666400b
1 changed files with 1 additions and 1 deletions
|
|
@ -190,7 +190,7 @@ def index():
|
|||
|
||||
plugin_vars = dict()
|
||||
plugin_names = set()
|
||||
seen_wizards = settings().get(["server", "seenWizards"])
|
||||
seen_wizards = settings().get(["server", "seenWizards"]) if not first_run else dict()
|
||||
for implementation in template_plugins:
|
||||
name = implementation._identifier
|
||||
plugin_names.add(name)
|
||||
|
|
|
|||
Loading…
Reference in a new issue