Add missing inversion of query lookup result

Your user exists? Great! It actually does not.

Note to self : Unit test SQL
This commit is contained in:
Salanto 2022-03-10 10:12:42 +01:00
parent cde07b5c50
commit a2f0fa89d9

View File

@ -203,7 +203,7 @@ bool DBManager::deleteUser(QString username)
username_exists.addBindValue(username);
username_exists.exec();
if (username_exists.first())
if (!username_exists.first())
return false;
QSqlQuery query;