diff --git a/src/vector/dendrite-sw.js b/src/vector/dendrite-sw.js index 1d4d0b5b..1ded2b1c 100644 --- a/src/vector/dendrite-sw.js +++ b/src/vector/dendrite-sw.js @@ -47,6 +47,9 @@ self.addEventListener('activate', function(event) { const go = new Go() WebAssembly.instantiateStreaming(fetch(`${bundle_path}/../../dendrite.wasm`), go.importObject).then((result) => { go.run(result.instance) + // make fetch calls go through this sw - notably if a page registers a sw, it does NOT go through any sw by default + // unless you refresh or call this function. + self.clients.claim() }); }) )