From 2a7fec46fecd1d7c0c0247c66e107a60a5da1c60 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Fri, 8 Feb 2019 13:36:39 -0500 Subject: [PATCH] Fetch somewhat higher resolution images (100x100 was really too small) --- modules/services/osm_wikibase.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/modules/services/osm_wikibase.js b/modules/services/osm_wikibase.js index f207ce5cb..dd3397503 100644 --- a/modules/services/osm_wikibase.js +++ b/modules/services/osm_wikibase.js @@ -288,8 +288,7 @@ export default { if (imageroot && image) { result.imageURL = imageroot + '?' + utilQsString({ title: 'Special:Redirect/file/' + image, - width: 100, - height: 100 + width: 400 }); } }