log cache response

This commit is contained in:
Abhinav 2022-02-04 19:18:50 +05:30
parent a4681fa7b5
commit f361ad516b

View file

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