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:
parent
f09adf4901
commit
febaf21c0d
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user