mirror of https://github.com/vector-im/riot-web
Update Permalinks.ts
parent
636b6884e8
commit
a9abf58ac3
|
@ -216,8 +216,7 @@ export class RoomPermalinkCreator {
|
||||||
if (this.room?.currentState) {
|
if (this.room?.currentState) {
|
||||||
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) + "$");
|
||||||
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