Skip to content

Commit aeb69bc

Browse files
committed
Fix incorrect saving of update checks preference
Due to a typo, "check for betas" was saved as "check for updates" upon Updates pane changes (on macOS) or any settings change (Windows). Fixes regression introduced in 0cfa4b9.
1 parent f1e46c0 commit aeb69bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/prefsdlg.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1097,7 +1097,7 @@ class UpdatesPageWindow : public PrefsPanel
10971097
// NB: Must be done first, before calling AppUpdates methods!
10981098
Config::CheckForBetaUpdates(m_beta->GetValue());
10991099

1100-
AppUpdates::Get().EnableAutomaticChecks(m_beta->GetValue());
1100+
AppUpdates::Get().EnableAutomaticChecks(m_updates->GetValue());
11011101
}
11021102

11031103
private:

0 commit comments

Comments
 (0)