Skip to content

Commit

Permalink
Notify blocking on uncaught exception (#137)
Browse files Browse the repository at this point in the history
  • Loading branch information
snmaynard authored and kattrali committed Dec 20, 2016
1 parent 7607340 commit 8373b6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/bugsnag/android/ExceptionHandler.java
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public ExceptionHandler(UncaughtExceptionHandler originalHandler) {
public void uncaughtException(Thread t, Throwable e) {
// Notify any subscribed clients of the uncaught exception
for(Client client : clientMap.keySet()) {
client.notify(e, Severity.ERROR);
client.notifyBlocking(e, Severity.ERROR);
}

// Pass exception on to original exception handler
Expand Down

0 comments on commit 8373b6e

Please sign in to comment.