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;
}