Prevent crash

pull/194/merge
M66B 4 years ago
parent f72bd168a4
commit ee7faec82b

@ -171,7 +171,8 @@ public abstract class SimpleTask<T> implements LifecycleObserver {
Log.e(ex); Log.e(ex);
this.ex = ex; this.ex = ex;
} finally { } finally {
wl.release(); if (wl.isHeld())
wl.release();
} }
// Run on UI thread // Run on UI thread

Loading…
Cancel
Save