mirror of
https://github.com/cryptomator/cryptomator.git
synced 2024-11-23 03:59:51 +00:00
Fixed #2270
This commit is contained in:
parent
8043a4ea10
commit
0dca0d6f1c
@ -53,7 +53,7 @@ public final class CatchingExecutors {
|
||||
callHandler(Thread.currentThread(), throwable);
|
||||
} else if (runnable instanceof Task<?> t) {
|
||||
afterExecuteTask(t);
|
||||
} else if (runnable instanceof Future<?> f) {
|
||||
} else if (runnable instanceof Future<?> f && f.isDone()) {
|
||||
afterExecuteFuture(f);
|
||||
}
|
||||
//Errors in this method are delegated to the UncaughtExceptionHandler of the current thread
|
||||
|
Loading…
Reference in New Issue
Block a user