Skip to content

Commit

Permalink
Fix build error
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanceriu committed Dec 16, 2022
1 parent 49d9355 commit 3cd09dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ElementX/Sources/Services/Client/MockClientProxy.swift
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class MockClientProxy: ClientProxyProtocol {
func restartSync() { }

func roomForIdentifier(_ identifier: String) async -> RoomProxyProtocol? {
guard let room = roomSummaryProvider?.roomListPublisher.value.first(where: { $0.id == identifier }),
guard let room = visibleRoomsSummaryProvider?.roomListPublisher.value.first(where: { $0.id == identifier }),
let displayName = room.asFilled?.name else {
return nil
}
Expand Down

0 comments on commit 3cd09dc

Please sign in to comment.