From 9bb8d4f3855e8d5c07240a64071d4e39178fa4ee Mon Sep 17 00:00:00 2001 From: Pavel Djundik Date: Tue, 10 Jul 2018 12:44:23 +0300 Subject: [PATCH] Do not write /list messages to logs --- src/models/msg.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/models/msg.js b/src/models/msg.js index 55b0378f..6a1b7038 100644 --- a/src/models/msg.js +++ b/src/models/msg.js @@ -46,6 +46,9 @@ class Msg { this.type !== Msg.Type.ERROR && this.type !== Msg.Type.BANLIST && this.type !== Msg.Type.IGNORELIST && + this.type !== "channel_list" && + this.type !== "channel_list_loading" && + this.type !== "channel_list_truncated" && this.type !== Msg.Type.TOPIC_SET_BY && this.type !== Msg.Type.WHOIS; }