diff --git a/structures/Util.js b/structures/Util.js index e5353189..177eb6eb 100644 --- a/structures/Util.js +++ b/structures/Util.js @@ -44,7 +44,7 @@ class Util { static parseTopic(channels, setting, user) { const channelList = channels.filter(c => { const topic = c.topic || ''; - if (topic.includes(`<${setting}>`) && c.type === 'text' && c.permissionsFor(user).has('SEND_MESSAGES')) return true; + if (topic.includes(`<${setting}>`) && c.type === 'text' && c.permissionsFor(user).has('SEND_MESSAGES')) return true; // eslint-disable-line max-len return false; }); if (!channelList) return false;