Fixed ROOM queue count

pull/214/head
M66B 10 months ago
parent be5e283838
commit e89fd07148

@ -151,8 +151,11 @@ class RoomTrackingLiveData<T> extends LiveData<T> {
protected void onActive() {
super.onActive();
mContainer.onActive(this);
synchronized (lock) {
queued++;
getQueryExecutor().execute(mRefreshRunnable);
}
}
@Override
protected void onInactive() {

Loading…
Cancel
Save