Merge pull request #3526 from FearlessTobi/bcat-disable
bcat: Disable Boxcat backend by default
This commit is contained in:
commit
81fa492825
2 changed files with 2 additions and 2 deletions
|
@ -539,7 +539,7 @@ void Config::ReadDebuggingValues() {
|
||||||
void Config::ReadServiceValues() {
|
void Config::ReadServiceValues() {
|
||||||
qt_config->beginGroup(QStringLiteral("Services"));
|
qt_config->beginGroup(QStringLiteral("Services"));
|
||||||
Settings::values.bcat_backend =
|
Settings::values.bcat_backend =
|
||||||
ReadSetting(QStringLiteral("bcat_backend"), QStringLiteral("boxcat"))
|
ReadSetting(QStringLiteral("bcat_backend"), QStringLiteral("null"))
|
||||||
.toString()
|
.toString()
|
||||||
.toStdString();
|
.toStdString();
|
||||||
Settings::values.bcat_boxcat_local =
|
Settings::values.bcat_boxcat_local =
|
||||||
|
|
|
@ -452,7 +452,7 @@ void Config::ReadValues() {
|
||||||
Settings::values.yuzu_token = sdl2_config->Get("WebService", "yuzu_token", "");
|
Settings::values.yuzu_token = sdl2_config->Get("WebService", "yuzu_token", "");
|
||||||
|
|
||||||
// Services
|
// Services
|
||||||
Settings::values.bcat_backend = sdl2_config->Get("Services", "bcat_backend", "boxcat");
|
Settings::values.bcat_backend = sdl2_config->Get("Services", "bcat_backend", "null");
|
||||||
Settings::values.bcat_boxcat_local =
|
Settings::values.bcat_boxcat_local =
|
||||||
sdl2_config->GetBoolean("Services", "bcat_boxcat_local", false);
|
sdl2_config->GetBoolean("Services", "bcat_boxcat_local", false);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue