Skip to content

Commit

Permalink
Merge b5fcc4e into d94527e
Browse files Browse the repository at this point in the history
  • Loading branch information
jywarren committed Nov 2, 2018
2 parents d94527e + b5fcc4e commit 0e77b9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/behaviors/quiet.js
Expand Up @@ -4,7 +4,7 @@ const MemoryBehavior = require('../models/memory-behavior');
const quietAction = (botNick, username) => {
var exempt = false;
if (username.match(/\[m\]/) !== null) exempt = true; // exempt matrix user
if (exempt) {
if (exempt !== true) {
return `/quiet ${username}`;
}
};
Expand Down

0 comments on commit 0e77b9e

Please sign in to comment.