If firstRun is true, ignore any seen wizards

This commit is contained in:
Gina Häußge 2015-08-20 10:27:48 +02:00
parent 9aa51d4f74
commit 92c666400b

View file

@ -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)