Skip to content

Commit

Permalink
MainBB Rebased
Browse files Browse the repository at this point in the history
  • Loading branch information
diegolix29 committed Jan 7, 2025
1 parent c600ec5 commit 9dbec07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qt_gui/settings_dialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ void SettingsDialog::LoadValuesFromConfig() {
#ifdef ENABLE_UPDATER
ui->updateCheckBox->setChecked(toml::find_or<bool>(data, "General", "autoUpdate", false));
std::string updateChannel = toml::find_or<std::string>(data, "General", "updateChannel", "");
if (updateChannel != "Release" && updateChannel != "Nightly") {
if (updateChannel != "Release" && updateChannel != "Nightly" && updateChannel != "PartBB") {
if (Common::isRelease) {
updateChannel = "Release";
} else if (!Common::isRelease) { // Non-release builds
Expand Down

0 comments on commit 9dbec07

Please sign in to comment.