mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-24 07:01:05 +00:00
Fixed ROOM queue count
This commit is contained in:
parent
be5e283838
commit
e89fd07148
1 changed files with 4 additions and 1 deletions
|
@ -151,7 +151,10 @@ class RoomTrackingLiveData<T> extends LiveData<T> {
|
|||
protected void onActive() {
|
||||
super.onActive();
|
||||
mContainer.onActive(this);
|
||||
getQueryExecutor().execute(mRefreshRunnable);
|
||||
synchronized (lock) {
|
||||
queued++;
|
||||
getQueryExecutor().execute(mRefreshRunnable);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue