You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-10 09:22:25 +03:00
permalink is one word
This commit is contained in:
@@ -69,7 +69,7 @@ const MAX_SERVER_CANDIDATES = 3;
|
||||
// The receiving user can then manually append the known-good server to
|
||||
// the list and magically have the link work.
|
||||
|
||||
export class RoomPermaLinkCreator {
|
||||
export class RoomPermalinkCreator {
|
||||
constructor(room) {
|
||||
this._room = room;
|
||||
this._highestPlUserId = null;
|
||||
@@ -243,9 +243,9 @@ export function makeRoomPermalink(roomId) {
|
||||
|
||||
const client = MatrixClientPeg.get();
|
||||
const room = client.getRoom(roomId);
|
||||
const permaLinkCreator = new RoomPermaLinkCreator(room);
|
||||
permaLinkCreator.load();
|
||||
return permaLinkCreator.forRoom();
|
||||
const permalinkCreator = new RoomPermalinkCreator(room);
|
||||
permalinkCreator.load();
|
||||
return permalinkCreator.forRoom();
|
||||
}
|
||||
|
||||
export function makeGroupPermalink(groupId) {
|
||||
|
||||
Reference in New Issue
Block a user