1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2024-12-25 17:27:00 +00:00

Cascade interrupts

This commit is contained in:
M66B 2018-08-27 19:01:24 +00:00
parent 285d7b4580
commit 8df4beb703

View file

@ -1608,6 +1608,7 @@ public class ServiceSynchronize extends LifecycleService {
Log.i(Helper.TAG, "Joined " + thread.getName()); Log.i(Helper.TAG, "Joined " + thread.getName());
} catch (InterruptedException ex) { } catch (InterruptedException ex) {
Log.e(Helper.TAG, thread.getName() + " join " + ex.toString()); Log.e(Helper.TAG, thread.getName() + " join " + ex.toString());
thread.interrupt();
} }
} }