Skip to content

Commit

Permalink
Merge pull request #5666 from roed314/g2c_find
Browse files Browse the repository at this point in the history
Make g2c empty find work
  • Loading branch information
AndrewVSutherland authored Sep 29, 2023
2 parents e35b924 + 45ae629 commit bb94d40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lmfdb/genus2_curves/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ def index():
@g2c_page.route("/Q/")
def index_Q():
info = to_dict(request.args, search_array=G2CSearchArray())
if len(info) > 1:
if request.args:
return genus2_curve_search(info)
info["stats"] = G2C_stats()
info["stats_url"] = url_for(".statistics")
Expand Down

0 comments on commit bb94d40

Please sign in to comment.