From 1f866c6e64b6fa9c9b735af172b30a509eda286c Mon Sep 17 00:00:00 2001 From: zefie Date: Thu, 19 Jun 2025 16:35:18 -0400 Subject: [PATCH] fix: missing channel mode C from supported list --- zefie_wtvp_minisrv/includes/classes/WTVIRC.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zefie_wtvp_minisrv/includes/classes/WTVIRC.js b/zefie_wtvp_minisrv/includes/classes/WTVIRC.js index fd293456..03189dbf 100644 --- a/zefie_wtvp_minisrv/includes/classes/WTVIRC.js +++ b/zefie_wtvp_minisrv/includes/classes/WTVIRC.js @@ -109,7 +109,7 @@ class WTVIRC { this.globalpeak = 0; this.socketpeak = 0; this.totalConnections = 0; - this.supported_channel_modes = "Ibe,k,l,NOQRSTVZcimnprt"; + this.supported_channel_modes = "Ibe,k,l,CNOQRSTVZcimnprt"; this.supported_user_modes = "BRZciorswxz"; this.supported_prefixes = ["ohv", "@%+"]; this.supported_client_caps = ['chghost', 'away-notify', 'echo-message', 'invite-notify', 'multi-prefix', 'userhost-in-names', 'account-notify', 'extended-join'];