Skip to content

Commit

Permalink
Bug 1857686 Catch errors when calling reportError
Browse files Browse the repository at this point in the history
  • Loading branch information
jhugman committed Oct 25, 2023
1 parent cb3fb56 commit 6d07a14
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,9 @@ open class Nimbus(
@AnyThread
override fun recordEvent(count: Long, eventId: String) {
dbScope.launch {
nimbusClient.recordEvent(eventId, count)
withCatchAll("recordEvent") {
nimbusClient.recordEvent(eventId, count)
}
}
}

Expand Down

0 comments on commit 6d07a14

Please sign in to comment.