Do not write /list messages to logs

This commit is contained in:
Pavel Djundik 2018-07-10 12:44:23 +03:00
parent 3a11cd2dda
commit 9bb8d4f385

View file

@ -46,6 +46,9 @@ class Msg {
this.type !== Msg.Type.ERROR && this.type !== Msg.Type.ERROR &&
this.type !== Msg.Type.BANLIST && this.type !== Msg.Type.BANLIST &&
this.type !== Msg.Type.IGNORELIST && 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.TOPIC_SET_BY &&
this.type !== Msg.Type.WHOIS; this.type !== Msg.Type.WHOIS;
} }