From 0b704f78aaa871c98e4f2dc89a971788a1132955 Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Fri, 28 Jul 2017 15:17:35 +0000 Subject: [PATCH] Fix eslint --- structures/Util.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;