mirror of
https://github.com/kremalicious/umami.git
synced 2025-02-01 12:29:35 +01:00
Merge pull request #2289 from AkashRajpurohit/fix/dont-stop-event-if-umami-fails-to-send-data
fix: 🐛 gulp error so that error in sending data does not affect the action triggering it
This commit is contained in:
commit
5d0584319f
@ -187,7 +187,8 @@
|
||||
headers,
|
||||
})
|
||||
.then(res => res.text())
|
||||
.then(text => (cache = text));
|
||||
.then(text => (cache = text))
|
||||
.catch(() => {}); // no-op, gulp error
|
||||
};
|
||||
|
||||
const track = (obj, data) => {
|
||||
|
Loading…
Reference in New Issue
Block a user