From 215d17ee12deb1d27ec2b6c0c3887ef2e2f3fb0d Mon Sep 17 00:00:00 2001 From: Elcin Ertugrul Date: Mon, 19 Feb 2024 18:10:50 +0000 Subject: [PATCH] google drive image url format hot-fix --- js/designExplorer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/designExplorer.js b/js/designExplorer.js index 66cfc8f4..dbb03289 100644 --- a/js/designExplorer.js +++ b/js/designExplorer.js @@ -145,7 +145,7 @@ function prepareGFolder(folderLink) { csvFiles[item.name] = GLink; }else if(item.mimeType.startsWith("image")){ - GLink = "https://docs.google.com/uc?id=" + item.id + "&export=download"; + GLink = "https://drive.google.com/thumbnail?id=" + item.id +"&sz=w1000"; //this item is a image file imgFiles[item.name] = GLink;