SASL: Support receiving USER and NICK after CAP END

This commit is contained in:
Alexey Sokolov
2025-03-16 09:44:10 +00:00
parent a7dffb8ff1
commit 0a45c4710a
2 changed files with 20 additions and 1 deletions

View File

@@ -200,7 +200,7 @@ void CClient::ReadLine(const CString& sData) {
}
m_bGotUser = true;
if (m_bGotPass) {
if (m_bGotPass || !m_sSASLUser.empty()) {
AuthUser();
} else if (!m_bInCap) {
SendRequiredPasswordNotice();