You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-13 08:02:38 +03:00
fix NPE for rooms with redacted tombstones
This commit is contained in:
@@ -241,7 +241,7 @@ export function makeRoomPermalink(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[0] !== '!') return permalinkBase;
|
||||
if (!roomId || roomId[0] !== '!') return permalinkBase;
|
||||
|
||||
const client = MatrixClientPeg.get();
|
||||
const room = client.getRoom(roomId);
|
||||
|
||||
Reference in New Issue
Block a user