mirror of
https://github.com/kremalicious/umami.git
synced 2024-12-24 18:26:20 +01:00
Merge branch 'master' into dev
This commit is contained in:
commit
eaaf3a0a5c
@ -168,11 +168,16 @@
|
|||||||
|
|
||||||
const send = payload => {
|
const send = payload => {
|
||||||
if (trackingDisabled()) return;
|
if (trackingDisabled()) return;
|
||||||
|
const headers = {
|
||||||
|
'Content-Type': 'application/json'
|
||||||
|
};
|
||||||
|
if (typeof cache !== 'undefined') {
|
||||||
|
headers['x-umami-cache'] = cache;
|
||||||
|
}
|
||||||
return fetch(endpoint, {
|
return fetch(endpoint, {
|
||||||
method: 'POST',
|
method: 'POST',
|
||||||
body: JSON.stringify({ type: 'event', payload }),
|
body: JSON.stringify({ type: 'event', payload }),
|
||||||
headers: { 'Content-Type': 'application/json', ['x-umami-cache']: cache },
|
headers: headers
|
||||||
})
|
})
|
||||||
.then(res => res.text())
|
.then(res => res.text())
|
||||||
.then(text => (cache = text));
|
.then(text => (cache = text));
|
||||||
|
Loading…
Reference in New Issue
Block a user