We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 310284b commit b80adc5Copy full SHA for b80adc5
src/serviceworker/index.ts
@@ -21,7 +21,7 @@ import { buildAndEncodePickleKey } from "matrix-react-sdk/src/utils/tokens/pickl
21
const serverSupportMap: {
22
[serverUrl: string]: {
23
supportsMSC3916: boolean;
24
- cacheExpires: number;
+ cacheExpiryTimeMs: number;
25
};
26
} = {};
27
@@ -47,7 +47,7 @@ self.addEventListener("fetch", (event: FetchEvent) => {
47
return; // not important to us
48
}
49
50
- // Note: ideally we'd keep the request headers and etc, but in practice we can't even see those details.
+ // Note: ideally we'd keep the request headers etc, but in practice we can't even see those details.
51
// See https://stackoverflow.com/a/59152482
52
let url = event.request.url;
53
0 commit comments