synchronize around adding query to query map
This commit is contained in:
parent
a5d9932b08
commit
185dac6953
|
@ -75,7 +75,9 @@ public class MessageArchiveService implements OnAdvancedStreamFeaturesLoaded {
|
|||
query = new Query(account, startCatchup, endCatchup);
|
||||
query.reference = reference;
|
||||
}
|
||||
this.queries.add(query);
|
||||
synchronized (this.queries) {
|
||||
this.queries.add(query);
|
||||
}
|
||||
this.execute(query);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue