prefix /api/metrics on android. fixes #1159
This commit is contained in:
parent
a42cec97f3
commit
41bfe31d61
2 changed files with 25 additions and 19 deletions
11
app/api.js
11
app/api.js
|
@ -390,3 +390,14 @@ export async function setFileList(bearerToken, data) {
|
|||
});
|
||||
return response.ok;
|
||||
}
|
||||
|
||||
export function sendMetrics(blob) {
|
||||
if (!navigator.sendBeacon) {
|
||||
return;
|
||||
}
|
||||
try {
|
||||
navigator.sendBeacon(getApiUrl('/api/metrics'), blob);
|
||||
} catch (e) {
|
||||
console.error(e);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue