mirror of https://github.com/M66B/FairEmail.git
Debug: prevent cursor window full
This commit is contained in:
parent
0703bb232d
commit
720649957a
|
@ -128,7 +128,7 @@ public class FragmentLogs extends FragmentBase {
|
|||
super.onActivityCreated(savedInstanceState);
|
||||
|
||||
long from = new Date().getTime() - 24 * 3600 * 1000L;
|
||||
int limit = (BuildConfig.DEBUG ? 10000 : 2000);
|
||||
int limit = (BuildConfig.DEBUG ? 5000 : 2000);
|
||||
|
||||
DB db = DB.getInstance(getContext());
|
||||
db.log().liveLogs(from, limit, null).observe(getViewLifecycleOwner(), new Observer<List<EntityLog>>() {
|
||||
|
|
Loading…
Reference in New Issue