Skip to content

Commit

Permalink
fix quickstart workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
RomanBachaloSigmaSoftware committed Aug 15, 2023
1 parent cb339af commit 6afae8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
def index():
session["manifest"] = get_manifest(DS_CONFIG["example_manifest_url"])

if DS_CONFIG["quickstart"] == "true":
if DS_CONFIG["quickstart"] == "true" and ("quickstart" not in app.config or ( "quickstart" in app.config and app.config["quickstart"] == True)):
app.config["quickstart"] = False
return redirect(url_for("eg001.get_view"))
if "is_cfr" in session and session["is_cfr"] == "enabled":
Expand Down

0 comments on commit 6afae8e

Please sign in to comment.