mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-04 23:29:17 +00:00
Merge pull request #10473 from delroth/autoupdate-fail
Fix manual update check which was hardcoded to "dev" track
This commit is contained in:
commit
8ecfa537a2
1 changed files with 2 additions and 1 deletions
|
@ -549,7 +549,8 @@ void MenuBar::AddOptionsMenu()
|
||||||
void MenuBar::InstallUpdateManually()
|
void MenuBar::InstallUpdateManually()
|
||||||
{
|
{
|
||||||
auto* updater =
|
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())
|
if (!updater->CheckForUpdate())
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue