update message

This commit is contained in:
Abhinav 2023-02-10 13:56:36 +05:30
parent 35e2245043
commit deb699ab51

View file

@ -5,7 +5,7 @@ async function openCache(cacheName: string) {
try {
return await getCacheStorage().open(cacheName);
} catch (e) {
// log and ignore, we don't want to crash the app if cache is not available
// log and ignore, we don't want to break the caller flow, when cache is not available
logError(e, 'openCache failed');
}
}
@ -13,7 +13,7 @@ async function deleteCache(cacheName: string) {
try {
return await getCacheStorage().delete(cacheName);
} catch (e) {
// log and ignore, we don't want to crash the app if cache is not available
// log and ignore, we don't want to break the caller flow, when cache is not available
logError(e, 'deleteCache failed');
}
}