diff options
author | George Hazan <ghazan@miranda.im> | 2019-09-19 17:22:24 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-09-19 17:22:24 +0300 |
commit | d7c2bcaa3f65b184c05ea5d4d8a63c2ea040daa0 (patch) | |
tree | 49d2a233f94cf115f97a253ff3b7afd34c0c6367 /plugins/PluginUpdater | |
parent | 5d8f2aa16bcfa2431c71fc02ec5773b889b0feb0 (diff) |
final fix for #2070
Diffstat (limited to 'plugins/PluginUpdater')
-rw-r--r-- | plugins/PluginUpdater/src/Options.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/PluginUpdater/src/Options.cpp b/plugins/PluginUpdater/src/Options.cpp index b050c79baf..fe14f8b2d6 100644 --- a/plugins/PluginUpdater/src/Options.cpp +++ b/plugins/PluginUpdater/src/Options.cpp @@ -359,7 +359,7 @@ static INT_PTR CALLBACK UpdateNotifyOptsProc(HWND hwndDlg, UINT msg, WPARAM wPar }
// if user tried to change the channel, run the update dialog immediately
- if (IsWindowEnabled(GetDlgItem(hwndDlg, IDC_CHANGE_PLATFORM)))
+ if (g_plugin.bForceRedownload)
CallService(MS_PU_CHECKUPDATES, 0, 0);
}
}
|