Fix useless try-catch

This commit is contained in:
tusooa 2024-08-22 21:44:55 -04:00
commit 67724ad2a4
No known key found for this signature in database
GPG key ID: 42AEC43D48433C51

View file

@ -214,6 +214,7 @@ self.addEventListener('fetch', (event) => {
}
return response
} catch (e) {
console.error('[Service worker] error when caching emoji:', e)
throw e
}
})())