1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-13 01:36:22 +00:00

Fixup for errors

This commit is contained in:
samherrington
2018-09-29 15:57:02 -05:00
parent 1246a677d1
commit dd913279d7
2 changed files with 3 additions and 2 deletions

View File

@@ -57,7 +57,7 @@ function recordDynamicCustomEvent (type, options = {}) {
mobileAnalyticsClient.recordEvent(type, options)
} catch (analyticsError) {
if (analyticsError instanceof ReferenceError) {
return
console.error(analyticsError.name + ': ' + analyticsError.message)
}
}
}
@@ -70,7 +70,7 @@ function recordStaticCustomEvent () {
})
} catch (analyticsError) {
if (analyticsError instanceof ReferenceError) {
return
console.error(analyticsError.name + ': ' + analyticsError.message)
}
}
}