From a204329628bbe4d166c21e177ebef4ff25b6856f Mon Sep 17 00:00:00 2001 From: Thomas Sileo Date: Sun, 18 Aug 2019 12:19:41 +0200 Subject: [PATCH] Fix lookup --- blueprints/admin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blueprints/admin.py b/blueprints/admin.py index af1769d..0f2fa46 100644 --- a/blueprints/admin.py +++ b/blueprints/admin.py @@ -191,7 +191,7 @@ def admin_lookup() -> _Response: print(data) app.logger.debug(data.to_dict()) return render_template( - "lookup.html", data=data, meta=meta, url=request.form.get("url") + "lookup.html", data=data, meta=meta, url=request.args.get("url") )