Disable media cache on service worker (#19471)

local
Yamagishi Kazutoshi 2 years ago committed by GitHub
parent 31e23269f9
commit eebbc5439a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      app/javascript/mastodon/service_worker/entry.js

@ -43,7 +43,7 @@ registerRoute(
);
registerRoute(
({ request }) => ['audio', 'image', 'track', 'video'].includes(request.destination),
({ request }) => request.destination === 'image',
new CacheFirst({
cacheName: `m${CACHE_NAME_PREFIX}media`,
plugins: [

Loading…
Cancel
Save