fix: Load arg get returns None which causes exception
All checks were successful
Build Docker / BuildImage (push) Successful in 1m12s

This commit is contained in:
2025-07-03 13:57:19 +10:00
parent 21f725baf3
commit e65fe8cd30

View File

@@ -539,8 +539,8 @@ def index():
if request.cookies.get("loaded"):
loaded = True
# Always load if load=true is in the query string
if request.args.get("load").lower() == "true":
# Always load if load is in the query string
if request.args.get("load"):
loaded = False