Remove log for expected RxJava InterruptedException

This commit is contained in:
2026-09-22 21:53:35 -07:00
committed by Tom
parent ba77d1b787
commit baed51259e

View File

@@ -122,7 +122,7 @@ public class MonsterCardsApplication extends Application {
e = e.getCause();
}
if (e instanceof InterruptedException || e instanceof InterruptedIOException) {
Logger.logWTF("RxJava Global Error Handler caught an expected InterruptedException upon disposal.");
// Expected when a blocking task is cancelled; swallow silently.
return;
}