Skip to content

Commit

Permalink
Don't time out on non shown error handler
Browse files Browse the repository at this point in the history
  • Loading branch information
crschnick committed Oct 21, 2024
1 parent 323ca02 commit 7229f98
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions app/src/main/java/io/xpipe/app/issue/ErrorHandlerComp.java
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,9 @@ public static void showAndWaitWithOtherThread(ErrorEvent event) {
} catch (Throwable t) {
t.printStackTrace();
}
} else {
showLatch.countDown();
finishLatch.countDown();
}
});

Expand Down

0 comments on commit 7229f98

Please sign in to comment.