Skip to content

Commit

Permalink
Use gender neutral messages.
Browse files Browse the repository at this point in the history
  • Loading branch information
Gottox authored Jun 19, 2021
1 parent 9b9bd7e commit 65cf5b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app.js
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand Down

0 comments on commit 65cf5b6

Please sign in to comment.