use startdate as lower bound when querying archive with after=x
This commit is contained in:
parent
b99d70bfe7
commit
65548ddccb
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue