Ensure /changepass always has arg 1 as the password

Otherwise, the syntax is /changepass <Password> or /changepass <Moderator> <Password>, rather than /changepass <Password> 'Moderator', like how it's specified to be
This commit is contained in:
AwesomeAim 2022-05-05 22:58:56 -07:00 committed by GitHub
parent 045a354137
commit 79c6e5e395
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -270,18 +270,16 @@ void AOClient::cmdLogout(int argc, QStringList argv)
void AOClient::cmdChangePassword(int argc, QStringList argv)
{
QString l_username;
QString l_password;
QString l_password = argv[0];
if (argc == 1) {
if (m_moderator_name.isEmpty()) {
sendServerMessage("You are not logged in.");
return;
}
l_username = m_moderator_name;
l_password = argv[0];
}
else if (argc == 2 && checkAuth(ACLFlags.value("SUPER"))) {
l_username = argv[0];
l_password = argv[1];
l_username = argv[1];
}
else {
sendServerMessage("Invalid command syntax.");