Skip to content

Commit 6afae8e

Browse files
fix quickstart workflow
1 parent cb339af commit 6afae8e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
def index():
2121
session["manifest"] = get_manifest(DS_CONFIG["example_manifest_url"])
2222

23-
if DS_CONFIG["quickstart"] == "true":
23+
if DS_CONFIG["quickstart"] == "true" and ("quickstart" not in app.config or ( "quickstart" in app.config and app.config["quickstart"] == True)):
2424
app.config["quickstart"] = False
2525
return redirect(url_for("eg001.get_view"))
2626
if "is_cfr" in session and session["is_cfr"] == "enabled":

0 commit comments

Comments
 (0)