mirror of https://github.com/vector-im/riot-web
Update Permalinks.ts
parent
ebf011fae9
commit
636b6884e8
|
@ -217,7 +217,7 @@ export class RoomPermalinkCreator {
|
||||||
const aclEvent = this.room?.currentState.getStateEvents(EventType.RoomServerAcl, "");
|
const aclEvent = this.room?.currentState.getStateEvents(EventType.RoomServerAcl, "");
|
||||||
if (aclEvent && aclEvent.getContent()) {
|
if (aclEvent && aclEvent.getContent()) {
|
||||||
const getRegex = (hostname: string): RegExp =>
|
const getRegex = (hostname: string): RegExp =>
|
||||||
new RegExp("^" + utils.globToRegexp(hostname, false) + "$");
|
new RegExp("^" + utils.globToRegexp(hostname) + "$");
|
||||||
|
|
||||||
const denied = aclEvent.getContent<{ deny: string[] }>().deny;
|
const denied = aclEvent.getContent<{ deny: string[] }>().deny;
|
||||||
if (Array.isArray(denied)) {
|
if (Array.isArray(denied)) {
|
||||||
|
|
Loading…
Reference in New Issue