diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2013-12-08 17:21:38 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2013-12-08 17:21:38 +0000 |
commit | 234b9ad1ccfa557306cd5ec488ec47c78cdf0cc8 (patch) | |
tree | a59e8ad42cd1e4d7887e0f2c4cac3d6fd977f613 /plugins/PluginUpdater/src/Utils.cpp | |
parent | 34a4eb364a9f9db66c56153e93eb9ab70e0f670b (diff) |
try to fix installing plugins which have been deselected
git-svn-id: http://svn.miranda-ng.org/main/trunk@7087 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/PluginUpdater/src/Utils.cpp')
-rw-r--r-- | plugins/PluginUpdater/src/Utils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/PluginUpdater/src/Utils.cpp b/plugins/PluginUpdater/src/Utils.cpp index 3284c7e844..5082d7abe1 100644 --- a/plugins/PluginUpdater/src/Utils.cpp +++ b/plugins/PluginUpdater/src/Utils.cpp @@ -226,7 +226,7 @@ bool ParseHashes(const TCHAR *ptszUrl, ptrT& baseUrl, SERVLIST& arHashes) return false;
}
- unzip(pFileUrl.tszDiskPath, tszTempPath, NULL);
+ unzip(pFileUrl.tszDiskPath, tszTempPath, NULL,true);
DeleteFile(pFileUrl.tszDiskPath);
TCHAR tszTmpIni[MAX_PATH] = {0};
|