From 4044185cddcc51e662e6bb4608e23106047c20ee Mon Sep 17 00:00:00 2001 From: Matthew Hodgson Date: Fri, 6 Jul 2018 19:17:01 +0100 Subject: [PATCH] add space after commas --- src/TextForEvent.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/TextForEvent.js b/src/TextForEvent.js index 2be4e590ec..1f4fc68b07 100644 --- a/src/TextForEvent.js +++ b/src/TextForEvent.js @@ -165,19 +165,19 @@ function textForServerACLEvent(ev) { const unallowedServers = prev.allow.filter((srv) => typeof(srv) === 'string' && !current.allow.includes(srv)); if (bannedServers.length > 0) { - changes.push(`Servers matching ${bannedServers.join(",")} are now banned.`); + changes.push(`Servers matching ${bannedServers.join(", ")} are now banned.`); } if (unbannedServers.length > 0) { - changes.push(`Servers matching ${unbannedServers.join(",")} were removed from the ban list.`); + changes.push(`Servers matching ${unbannedServers.join(", ")} were removed from the ban list.`); } if (allowedServers.length > 0) { - changes.push(`Servers matching ${allowedServers.join(",")} are now allowed.`); + changes.push(`Servers matching ${allowedServers.join(", ")} are now allowed.`); } if (unallowedServers.length > 0) { - changes.push(`Servers matching ${unallowedServers.join(",")} were removed from the allowed list.`); + changes.push(`Servers matching ${unallowedServers.join(", ")} were removed from the allowed list.`); } if (prev.allow_ip_literals !== current.allow_ip_literals) {