diff --git a/src/services/publicCollectionDownloadManager.ts b/src/services/publicCollectionDownloadManager.ts index 1271a2094..71a3a3cdb 100644 --- a/src/services/publicCollectionDownloadManager.ts +++ b/src/services/publicCollectionDownloadManager.ts @@ -38,7 +38,7 @@ class PublicCollectionDownloadManager { const cacheResp: Response = await thumbnailCache?.match( file.id.toString() ); - console.log(cacheResp); + if (cacheResp) { return URL.createObjectURL(await cacheResp.blob()); }