mirror of
https://github.com/vector-im/element-web.git
synced 2026-05-05 20:26:19 +02:00
turn NPE into a throw
This commit is contained in:
parent
e98ef0d537
commit
b9eebee13b
@ -239,9 +239,13 @@ export function makeUserPermalink(userId) {
|
||||
export function makeRoomPermalink(roomId) {
|
||||
const permalinkBase = `${baseUrl}/#/${roomId}`;
|
||||
|
||||
if (!roomId) {
|
||||
throw new Error("can't permalink a falsey roomId");
|
||||
}
|
||||
|
||||
// If the roomId isn't actually a room ID, don't try to list the servers.
|
||||
// Aliases are already routable, and don't need extra information.
|
||||
if (!roomId || roomId[0] !== '!') return permalinkBase;
|
||||
if (roomId[0] !== '!') return permalinkBase;
|
||||
|
||||
const client = MatrixClientPeg.get();
|
||||
const room = client.getRoom(roomId);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user