Skip to content

Commit

Permalink
google drive image url format hot-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
eertugrul committed Feb 19, 2024
1 parent a6512ed commit 215d17e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/designExplorer.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 215d17e

Please sign in to comment.