remove cacheResp logging

This commit is contained in:
Abhinav 2022-02-05 15:15:40 +05:30
parent b5d19d8ce7
commit e39eb9c82e

View file

@ -38,7 +38,7 @@ class PublicCollectionDownloadManager {
const cacheResp: Response = await thumbnailCache?.match( const cacheResp: Response = await thumbnailCache?.match(
file.id.toString() file.id.toString()
); );
console.log(cacheResp);
if (cacheResp) { if (cacheResp) {
return URL.createObjectURL(await cacheResp.blob()); return URL.createObjectURL(await cacheResp.blob());
} }