Fix getRoomUrl
This commit is contained in:
@@ -575,11 +575,11 @@ export function getRoomUrl(roomId) {
|
|||||||
const [localPart, host] = roomId.replace("#", "").split(":");
|
const [localPart, host] = roomId.replace("#", "").split(":");
|
||||||
|
|
||||||
if (host !== window.location.host) {
|
if (host !== window.location.host) {
|
||||||
return `${window.location.host}/rooms/${roomId}`;
|
return `${window.location.host}/room/${roomId}`;
|
||||||
} else {
|
} else {
|
||||||
return `${window.location.host}/${localPart}`;
|
return `${window.location.host}/${localPart}`;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
return `${window.location.host}/rooms/${roomId}`;
|
return `${window.location.host}/room/${roomId}`;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user