only delete file when downloaded from http
This commit is contained in:
@@ -200,7 +200,7 @@ public class UpdateClient(string updateUrl, AppVersion currentVersion, AppChanne
|
||||
File.Delete(packagePath);
|
||||
Directory.Delete(dataPath, true);
|
||||
}
|
||||
else if (package.PackageType == PackageType.File)
|
||||
else if (package.PackageType == PackageType.File && package.AddressType == PackageAddressType.Http)
|
||||
File.Delete(dataPath);
|
||||
RaiseStatusChanged(UpdateStatus.Cleanup, UpdateStatusEvent.PostEvent);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user