var -> val

This commit is contained in:
Benoit Marty 2023-06-21 10:11:08 +02:00
parent 1c06943530
commit 5fe186f9de
3 changed files with 5 additions and 5 deletions

View file

@ -23,7 +23,7 @@ import kotlinx.coroutines.flow.MutableStateFlow
class FakeSeenInvitesStore : SeenInvitesStore {
private var existing = MutableStateFlow(emptySet<RoomId>())
private val existing = MutableStateFlow(emptySet<RoomId>())
private var provided: Set<RoomId>? = null
fun publishRoomIds(invites: Set<RoomId>) {