Check for correct auth_type in config.ini

When initializing config.ini, ensure auth_type is set to a recognzied value.
This commit is contained in:
MangosArentLiterature 2021-04-03 17:00:45 -05:00
parent f09adf4901
commit febaf21c0d

View File

@ -84,6 +84,14 @@ bool ConfigManager::initConfig()
// This means the config is invalid
return false;
}
config.beginGroup("Options");
QString auth_type = config.value("auth", "simple").toString();
config.endGroup();
if (!(auth_type == "simple" || auth_type == "advanced")) {
qCritical() << "config.ini is invalid!";
return false;
}
else {
// Config is valid and up to date, so let's go ahead
return true;