use startdate as lower bound when querying archive with after=x

This commit is contained in:
Daniel Gultsch 2016-04-09 12:31:08 +02:00
parent b99d70bfe7
commit 65548ddccb
1 changed files with 3 additions and 13 deletions

View File

@ -61,11 +61,8 @@ public class MessageArchiveService implements OnAdvancedStreamFeaturesLoaded {
}
query = new Query(account, startCatchup, endCatchup);
} else {
if (pair.second == null) {
query = new Query(account, startCatchup, endCatchup);
} else {
query = new Query(account, pair.second, endCatchup);
}
query = new Query(account, startCatchup, endCatchup);
query.reference = pair.second;
}
this.queries.add(query);
this.execute(query);
@ -285,14 +282,7 @@ public class MessageArchiveService implements OnAdvancedStreamFeaturesLoaded {
this.end = end;
this.queryId = new BigInteger(50, mXmppConnectionService.getRNG()).toString(32);
}
public Query(Account account, String reference, long end) {
this.account = account;
this.reference = reference;
this.end = end;
this.queryId = new BigInteger(50, mXmppConnectionService.getRNG()).toString(32);
}
private Query page(String reference) {
Query query = new Query(this.account,this.start,this.end);
query.reference = reference;