From 9a4075c6370f087394eb26383c3e4cbdef95ca00 Mon Sep 17 00:00:00 2001 From: Will Hunt Date: Fri, 6 Jul 2018 16:38:04 +0100 Subject: [PATCH] Semicolons --- src/TextForEvent.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/TextForEvent.js b/src/TextForEvent.js index cc8f48b2e0..bf8d09b06c 100644 --- a/src/TextForEvent.js +++ b/src/TextForEvent.js @@ -152,11 +152,11 @@ function textForServerACLEvent(ev) { } if (!Array.isArray(current.allow)){ - current.allow = [] + current.allow = []; } if (!Array.isArray(current.deny)){ - current.deny = [] + current.deny = []; } const bannedServers = current.deny.filter((srv) => typeof(srv) === 'string' && !prev.deny.includes(srv));