mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-23 14:41:08 +00:00
Increased max retry count reading live data
This commit is contained in:
parent
cdf95f7040
commit
ca4fe96bd3
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue