Use ContentState.Loading instead of ContentState.UnknownRoom.

This commit is contained in:
Benoit Marty 2024-04-12 18:16:17 +02:00
parent a498365504
commit 020e51d0f9

View file

@ -56,7 +56,7 @@ class JoinRoomPresenter @AssistedInject constructor(
roomDescription.get().toContentState() roomDescription.get().toContentState()
} }
else -> { else -> {
ContentState.UnknownRoom(roomId) ContentState.Loading(roomId)
} }
} }
} }