Skip to content
Permalink
Browse files
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.
@@ -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())
{

0 comments on commit 8ecfa53

Please sign in to comment.