mirror of https://github.com/M66B/FairEmail.git
28 lines
1.3 KiB
Diff
28 lines
1.3 KiB
Diff
--- /home/marcel/support/room/runtime/src/main/java/androidx/room/RoomTrackingLiveData.java 2019-07-27 12:47:44.950985792 +0200
|
|
+++ app/src/main/java/androidx/room/RoomTrackingLiveData.java 2019-07-28 18:06:23.373936158 +0200
|
|
@@ -89,8 +89,14 @@ class RoomTrackingLiveData<T> extends Li
|
|
try {
|
|
value = mComputeFunction.call();
|
|
} catch (Exception e) {
|
|
- throw new RuntimeException("Exception while computing database"
|
|
- + " live data.", e);
|
|
+ eu.faircode.email.Log.w(e);
|
|
+ //throw new RuntimeException("Exception while computing database"
|
|
+ // + " live data.", e);
|
|
+ computed = false;
|
|
+ try {
|
|
+ Thread.sleep(5000L);
|
|
+ } catch (InterruptedException ignored) {
|
|
+ }
|
|
}
|
|
}
|
|
if (computed) {
|
|
@@ -125,6 +131,7 @@ class RoomTrackingLiveData<T> extends Li
|
|
}
|
|
}
|
|
};
|
|
+
|
|
@SuppressLint("RestrictedApi")
|
|
RoomTrackingLiveData(
|
|
RoomDatabase database,
|