fall back to non-standard persisted api for Safari
This commit is contained in:
parent
26bda5933b
commit
f6e9c32c48
2 changed files with 11 additions and 0 deletions
|
@ -119,6 +119,12 @@ export default async function sendBugReport(bugReportEndpoint, opts) {
|
|||
body.append("storageManager_persisted", await navigator.storage.persisted());
|
||||
} catch (e) {}
|
||||
}
|
||||
// Safari
|
||||
if (document.hasStorageAccess) {
|
||||
try {
|
||||
body.append("storageManager_persisted", await document.hasStorageAccess());
|
||||
} catch (e) {}
|
||||
}
|
||||
if (navigator.storage && navigator.storage.estimate) {
|
||||
try {
|
||||
const estimate = await navigator.storage.estimate();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue