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) {
|
||||
const aclEvent = this.room?.currentState.getStateEvents(EventType.RoomServerAcl, "");
|
||||
if (aclEvent && aclEvent.getContent()) {
|
||||
const getRegex = (hostname: string): RegExp =>
|
||||
new RegExp("^" + utils.globToRegexp(hostname) + "$");
|
||||
const getRegex = (hostname: string): RegExp => new RegExp("^" + utils.globToRegexp(hostname) + "$");
|
||||
|
||||
const denied = aclEvent.getContent<{ deny: string[] }>().deny;
|
||||
if (Array.isArray(denied)) {
|
||||
|
|
Loading…
Reference in New Issue