remove console.log from findChannelByName loop

This commit is contained in:
Rastislav Vysoky 2025-08-24 19:45:20 +02:00 committed by GitHub
parent 9acf56ed81
commit bc65c5a98d
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;
});