You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-07 10:46:24 +03:00
Minor cleanup of getPermalinkConstructor
This commit is contained in:
@@ -287,8 +287,9 @@ export function isPermalinkHost(host: string): boolean {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function getPermalinkConstructor(): PermalinkConstructor {
|
function getPermalinkConstructor(): PermalinkConstructor {
|
||||||
if (SdkConfig.get()['permalinkPrefix'] && SdkConfig.get()['permalinkPrefix'] !== matrixtoBaseUrl) {
|
const riotPrefix = SdkConfig.get()['permalinkPrefix'];
|
||||||
return new RiotPermalinkConstructor(SdkConfig.get()['permalinkPrefix']);
|
if (riotPrefix && riotPrefix !== matrixtoBaseUrl) {
|
||||||
|
return new RiotPermalinkConstructor(riotPrefix);
|
||||||
}
|
}
|
||||||
|
|
||||||
return new SpecPermalinkConstructor();
|
return new SpecPermalinkConstructor();
|
||||||
|
|||||||
Reference in New Issue
Block a user