Remove controller::joinRoom

Remove controller::joinRoom in favour of using RoomManager::OpenResource
This commit is contained in:
James Graham
2023-11-25 15:07:15 +00:00
parent 704430db7a
commit 201aa82c04
8 changed files with 7 additions and 24 deletions

View File

@@ -26,7 +26,7 @@ RowLayout {
if (isJoined) {
RoomManager.enterRoom(root.connection.room(roomId))
} else {
Controller.joinRoom(roomId.length > 0 ? roomId : alias)
RoomManager.openResource(roomId.length > 0 ? roomId : alias, "join")
}
})
}