diff options
author | (no author) <(no author)@4f64403b-2f21-0410-a795-97e2b3489a10> | 2010-04-21 13:01:53 +0000 |
---|---|---|
committer | (no author) <(no author)@4f64403b-2f21-0410-a795-97e2b3489a10> | 2010-04-21 13:01:53 +0000 |
commit | c12debcb441a2078c30372ba77cfcf6bdb219bfd (patch) | |
tree | 83e95a90d743fc94751de2a4ddb2a9b33d645855 /updater/services.cpp | |
parent | 00a1cef967087b7c85b9ef39b63ba0662fa13080 (diff) |
Added beta indication when update
More performance improvements
git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@509 4f64403b-2f21-0410-a795-97e2b3489a10
Diffstat (limited to 'updater/services.cpp')
-rw-r--r-- | updater/services.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/updater/services.cpp b/updater/services.cpp index 90215b1..62e88b9 100644 --- a/updater/services.cpp +++ b/updater/services.cpp @@ -54,7 +54,7 @@ bool DownloadUpdates(UpdateList &todo, FilenameMap *map, bool dlls_only) { mir_snprintf(stored_setting, SIZEOF(stored_setting), "DisabledVer%s", todo[index].update.szComponentName);
DBVARIANT dbv;
bool download = todo[index].update_options.enabled;
- if(!DBGetContactSetting(0, "Updater", stored_setting, &dbv)) {
+ if(!DBGetContactSettingString(0, "Updater", stored_setting, &dbv)) {
if(dbv.pszVal && strcmp(dbv.pszVal, todo[index].newVersion) == 0)
download = false;
else
|