Don't open the space home page when changing spaces on android
When I change space on android I just want to be able to select a room I'm in.
This commit is contained in:
@@ -455,10 +455,12 @@ void RoomManager::setCurrentSpace(const QString &spaceId, bool setRoom)
|
||||
return;
|
||||
}
|
||||
|
||||
if (spaceId.length() > 3) {
|
||||
resolveResource(spaceId, "no_join"_ls);
|
||||
} else if (!m_isMobile) {
|
||||
visitRoom({}, {});
|
||||
if (!m_isMobile) {
|
||||
if (spaceId.length() > 3) {
|
||||
resolveResource(spaceId, "no_join"_ls);
|
||||
} else {
|
||||
visitRoom({}, {});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user