Skip to content

Commit

Permalink
Fix build issue
Browse files Browse the repository at this point in the history
  • Loading branch information
j-f1 committed Jun 30, 2023
1 parent fbd846c commit ef24eab
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,13 @@ extension MastodonPickServerViewModel {

loadIndexedServerStateMachine.enter(LoadIndexedServerState.Loading.self)

Publishers.CombineLatest(
Publishers.CombineLatest3(
filteredIndexedServers,
selectCategoryItem,
unindexedServers
)
.receive(on: DispatchQueue.main)
.sink(receiveValue: { [weak self] indexedServers, unindexedServers in
.sink(receiveValue: { [weak self] indexedServers, selectCategoryItem, unindexedServers in
guard let self = self else { return }
guard let diffableDataSource = self.diffableDataSource else { return }

Expand Down

0 comments on commit ef24eab

Please sign in to comment.