diff options
author | George Hazan <ghazan@miranda.im> | 2022-04-16 15:02:19 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2022-04-16 15:02:19 +0300 |
commit | 86b82de0ec0aa933bf8101cef55597e19d78d6a8 (patch) | |
tree | a15c6a01f11719d9f7d434c5eff69ac9f3f7fa57 /plugins/PluginUpdater/src/Notifications.cpp | |
parent | 23843ef3efa7b02aa04e9a470bb95c118d3a7ceb (diff) |
fixes #3008 (Недоработка при смене разрядности приложения)
Diffstat (limited to 'plugins/PluginUpdater/src/Notifications.cpp')
-rw-r--r-- | plugins/PluginUpdater/src/Notifications.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/PluginUpdater/src/Notifications.cpp b/plugins/PluginUpdater/src/Notifications.cpp index 24471f507d..e9724717dd 100644 --- a/plugins/PluginUpdater/src/Notifications.cpp +++ b/plugins/PluginUpdater/src/Notifications.cpp @@ -74,7 +74,7 @@ void CALLBACK RestartPrompt(void *) return;
}
- CallService(MS_SYSTEM_RESTART, g_plugin.getBool("RestartCurrentProfile", true), 0);
+ DoRestart();
}
static LRESULT CALLBACK PopupDlgProcRestart(HWND hPopup, UINT uMsg, WPARAM wParam, LPARAM lParam)
|