From f4fbee3a8b680a551ae7c88e6318622e4449c6c6 Mon Sep 17 00:00:00 2001 From: Edward Betts Date: Wed, 12 May 2021 09:24:44 +0200 Subject: [PATCH] Increase thumbnail size --- web_view.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web_view.py b/web_view.py index 8fdcd96..9913bff 100755 --- a/web_view.py +++ b/web_view.py @@ -188,7 +188,7 @@ def identifier_index(): @app.route("/commons/") def get_commons_image(filename): - detail = commons.image_detail([filename], thumbheight=250, thumbwidth=250) + detail = commons.image_detail([filename], thumbheight=600, thumbwidth=600) image = detail[filename] return redirect(image["thumburl"])