Update Permalinks.ts

t3chguy/dedup-icons-17oct
Michael Telatynski 2023-05-31 12:55:14 +01:00 committed by GitHub
parent 636b6884e8
commit a9abf58ac3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -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)) {