1
0
Fork 0
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:
M66B 2023-11-08 18:23:37 +01:00
parent be5e283838
commit e89fd07148

View file

@ -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