mirror of https://github.com/vector-im/riot-web
Merge pull request #4272 from matrix-org/bwindels/safaripersisted
Fall back to non-standard persisted api for Safaripull/21833/head
commit
0fb96fda6e
|
@ -118,6 +118,10 @@ export default async function sendBugReport(bugReportEndpoint, opts) {
|
||||||
try {
|
try {
|
||||||
body.append("storageManager_persisted", await navigator.storage.persisted());
|
body.append("storageManager_persisted", await navigator.storage.persisted());
|
||||||
} catch (e) {}
|
} catch (e) {}
|
||||||
|
} else if (document.hasStorageAccess) { // Safari
|
||||||
|
try {
|
||||||
|
body.append("storageManager_persisted", await document.hasStorageAccess());
|
||||||
|
} catch (e) {}
|
||||||
}
|
}
|
||||||
if (navigator.storage && navigator.storage.estimate) {
|
if (navigator.storage && navigator.storage.estimate) {
|
||||||
try {
|
try {
|
||||||
|
|
|
@ -48,6 +48,11 @@ export function tryPersistStorage() {
|
||||||
navigator.storage.persist().then(persistent => {
|
navigator.storage.persist().then(persistent => {
|
||||||
console.log("StorageManager: Persistent?", persistent);
|
console.log("StorageManager: Persistent?", persistent);
|
||||||
});
|
});
|
||||||
|
} else if (document.requestStorageAccess) { // Safari
|
||||||
|
document.requestStorageAccess().then(
|
||||||
|
() => console.log("StorageManager: Persistent?", true),
|
||||||
|
() => console.log("StorageManager: Persistent?", false),
|
||||||
|
);
|
||||||
} else {
|
} else {
|
||||||
console.log("StorageManager: Persistence unsupported");
|
console.log("StorageManager: Persistence unsupported");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue