From 65cf5b6e6a22cf7ae02059ee5a7d9f2e5023a22e Mon Sep 17 00:00:00 2001 From: Enno Boland Date: Sat, 19 Jun 2021 11:49:51 +0200 Subject: [PATCH] Use gender neutral messages. --- app.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app.js b/app.js index 259f3bc..22310d4 100644 --- a/app.js +++ b/app.js @@ -132,11 +132,11 @@ function handle_response() { if (!msg.message.startsWith(prefix)) { return; } - console.log(`Mention from ${msg.nick}. Check for his account`) + console.log(`Mention from ${msg.nick}. Check authentication of the account`) client.whois(msg.nick, (nick) => { if (!allow_from.includes(nick.account)) { - return console.log(`${msg.nick}: Account ${nick.account} is not in response_allow_from`) + return console.log(`${msg.nick}: account ${nick.account} is not in response_allow_from`) } core.setOutput("response", msg.message.substr(prefix.length));