Skip to content
Snippets Groups Projects
Commit a23b2179 authored by Jameson Rollins's avatar Jameson Rollins
Browse files

web: fix home query check

parent ff6a2d8b
No related branches found
No related tags found
No related merge requests found
......@@ -127,6 +127,7 @@ def index(tag='all'):
)
else:
is_home = not bool(bottle.request.query_string)
query = query_parse(bottle.request.query)
return bottle.template(
......@@ -134,7 +135,7 @@ def index(tag='all'):
IFO=config.IFO,
web_script=WEB_SCRIPT,
online_status=online_status(),
is_home=not bool(query),
is_home=is_home,
query=query,
)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment