diff options
author | Robert Pösel <robyer@seznam.cz> | 2017-06-14 23:35:51 +0200 |
---|---|---|
committer | Robert Pösel <robyer@seznam.cz> | 2017-06-14 23:35:51 +0200 |
commit | 4c3b947ddacabef2754f8ee9551c6be0786b73ba (patch) | |
tree | 9417fba4cbeb414acbe7a9cd2f36cdf0c3a8c67f /plugins/SeenPlugin/src/options.cpp | |
parent | 9341f4d93b29229f7321745db9f384ba4269f342 (diff) |
SeenPlugin: Make delimiter change backwards compatible (fixes #607)
Diffstat (limited to 'plugins/SeenPlugin/src/options.cpp')
-rw-r--r-- | plugins/SeenPlugin/src/options.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/SeenPlugin/src/options.cpp b/plugins/SeenPlugin/src/options.cpp index 0a3b89fa8a..bdbd8aa407 100644 --- a/plugins/SeenPlugin/src/options.cpp +++ b/plugins/SeenPlugin/src/options.cpp @@ -382,7 +382,7 @@ INT_PTR CALLBACK OptsSettingsDlgProc(HWND hdlg, UINT msg, WPARAM wparam, LPARAM }
hItem = TreeView_GetNextSibling(hwndTreeView, hItem);
}
- db_set_s(NULL, S_MOD, "WatchedProtocols", watchedProtocols);
+ db_set_s(NULL, S_MOD, "WatchedAccounts", watchedProtocols);
UnloadWatchedProtos();
LoadWatchedProtos();
|