Skip to content

Commit 0a8d6a6

Browse files
authored
Remove premature ending of CAP sequence, causing SASL authentication to abort on some IRCds (#391)
1 parent f8178ee commit 0a8d6a6

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/commands/handlers/registration.js

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -323,11 +323,6 @@ const handlers = {
323323
},
324324

325325
RPL_LOGGEDIN: function(command, handler) {
326-
if (handler.network.cap.negotiating === true) {
327-
handler.connection.write('CAP END');
328-
handler.network.cap.negotiating = false;
329-
}
330-
331326
const mask = Helpers.parseMask(command.params[1]);
332327

333328
// Check if we have a server-time

0 commit comments

Comments
 (0)