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:
Mike Cao 2023-09-22 17:16:13 -07:00 committed by GitHub
commit 5d0584319f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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) => {