From d798d7e3af74d1c588a905880e2f342f3053c98e Mon Sep 17 00:00:00 2001 From: Yonle Date: Sun, 18 Feb 2024 13:08:16 +0700 Subject: [PATCH] it bypasses. now get it fix asap. Signed-off-by: Yonle --- bouncer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bouncer.js b/bouncer.js index 8c49612..b796845 100644 --- a/bouncer.js +++ b/bouncer.js @@ -102,7 +102,7 @@ module.exports = (ws, req, onClose) => { } else { filters[fn].kinds = filters[fn].kinds?.filter(kind => { if (ws.rejectKinds && ws.rejectKinds.includes(kind)) return false; - if (ws.acceptKinds && !ws.acceptKinds.includes(kind)) return true; + if (ws.acceptKinds && !ws.acceptKinds.includes(kind)) return false; return true; }); }