mirror of
https://github.com/M66B/FairEmail.git
synced 2026-01-02 19:10:11 +01:00
Increased max retry count reading live data
This commit is contained in:
@@ -90,7 +90,7 @@ class RoomTrackingLiveData<T> extends LiveData<T> {
|
||||
value = mComputeFunction.call();
|
||||
computed = true;
|
||||
} catch (Exception e) {
|
||||
if (++retry > 3)
|
||||
if (++retry > 10)
|
||||
throw new RuntimeException(
|
||||
"Exception while computing database live data.", e);
|
||||
eu.faircode.email.Log.w(e);
|
||||
|
||||
Reference in New Issue
Block a user