Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #10473 from delroth/autoupdate-fail
Fix manual update check which was hardcoded to "dev" track
  • Loading branch information
delroth committed Mar 1, 2022
2 parents ea116fb + 281dfd3 commit 8ecfa53
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Source/Core/DolphinQt/MenuBar.cpp
Expand Up @@ -549,7 +549,8 @@ void MenuBar::AddOptionsMenu()
void MenuBar::InstallUpdateManually()
{
auto* updater =
new Updater(this->parentWidget(), "dev", Config::Get(Config::MAIN_AUTOUPDATE_HASH_OVERRIDE));
new Updater(this->parentWidget(), Config::Get(Config::MAIN_AUTOUPDATE_UPDATE_TRACK),
Config::Get(Config::MAIN_AUTOUPDATE_HASH_OVERRIDE));

if (!updater->CheckForUpdate())
{
Expand Down

0 comments on commit 8ecfa53

Please sign in to comment.