Skip to content

Commit

Permalink
Fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
roed314 committed Nov 16, 2024
1 parent cbf26fe commit a09e40f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lmfdb/number_fields/number_field.py
Original file line number Diff line number Diff line change
Expand Up @@ -924,7 +924,7 @@ def number_field_search(info, query):
query["galois_label"] = gg
else:
query["degree"] = {"$in": list(opts)}
query["galois_label"] = list(opts.values())
query["galois_label"] = {"$in": list(opts.values())}
elif fi == "gal":
query["is_galois"] = True
elif fi == "solv":
Expand Down

0 comments on commit a09e40f

Please sign in to comment.