You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-07-28 15:22:05 +03:00
Semicolons
This commit is contained in:
@ -152,11 +152,11 @@ function textForServerACLEvent(ev) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (!Array.isArray(current.allow)){
|
if (!Array.isArray(current.allow)){
|
||||||
current.allow = []
|
current.allow = [];
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!Array.isArray(current.deny)){
|
if (!Array.isArray(current.deny)){
|
||||||
current.deny = []
|
current.deny = [];
|
||||||
}
|
}
|
||||||
|
|
||||||
const bannedServers = current.deny.filter((srv) => typeof(srv) === 'string' && !prev.deny.includes(srv));
|
const bannedServers = current.deny.filter((srv) => typeof(srv) === 'string' && !prev.deny.includes(srv));
|
||||||
|
Reference in New Issue
Block a user