1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2024-12-27 10:17:18 +00:00
This commit is contained in:
M66B 2022-03-18 20:55:16 +01:00
parent 1ef4f1be11
commit 952ed112af

View file

@ -1152,7 +1152,7 @@ public class BoundaryCallbackMessages extends PagedList.BoundaryCallback<TupleMe
criteria.after = json.getLong("after") + now.getTimeInMillis();
if (json.has("before"))
criteria.before = json.getLong("before" + now.getTimeInMillis());
criteria.before = json.getLong("before") + now.getTimeInMillis();
return criteria;
}