Merge pull request #2 from recrof/patch-1

remove console.log from findChannelByName loop
This commit is contained in:
Liam Cottle 2025-08-25 17:12:23 +12:00 committed by GitHub
commit 536e7641e0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1808,7 +1808,6 @@ class Connection extends EventEmitter {
// find first channel matching name exactly
return channels.find((channel) => {
console.log(channel);
return channel.name === name;
});