Switch the roomSummaryProvider and roomTimelineProvider to collect on the default global queue instead of background

This commit is contained in:
Stefan Ceriu
2022-11-18 14:43:01 +02:00
committed by Stefan Ceriu
parent 4614850d77
commit 30739038fe
2 changed files with 2 additions and 2 deletions

View File

@@ -91,7 +91,7 @@ class RoomSummaryProvider: RoomSummaryProviderProtocol {
.store(in: &cancellables)
weakProvider.roomListDiffPublisher
.collect(.byTime(DispatchQueue.global(qos: .background), 0.5))
.collect(.byTime(DispatchQueue.global(), 0.5))
.sink { self.updateRoomsWithDiffs($0) }
.store(in: &cancellables)

View File

@@ -53,7 +53,7 @@ class RoomTimelineProvider: RoomTimelineProviderProtocol {
roomTimelineListener
.itemsUpdatePublisher
.collect(.byTime(DispatchQueue.global(qos: .background), 0.5))
.collect(.byTime(DispatchQueue.global(), 0.5))
.sink { self.updateItemsWithDiffs($0) }
.store(in: &cancellables)
}