aboutsummaryrefslogtreecommitdiff
path: root/src/api/burn/WixToolset.Mba.Core/Engine.cs
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2022-09-09 21:21:55 -0400
committerBob Arnson <github@bobs.org>2022-09-12 13:33:03 -0400
commit6a45cb7687de57056532fe897a708435deec2ea3 (patch)
treea9795ac837d0475ea22d86c0d592fac7b0b6c159 /src/api/burn/WixToolset.Mba.Core/Engine.cs
parenta1307cd4e76a89598c53cb68309358a7012db553 (diff)
downloadwix-6a45cb7687de57056532fe897a708435deec2ea3.tar.gz
wix-6a45cb7687de57056532fe897a708435deec2ea3.tar.bz2
wix-6a45cb7687de57056532fe897a708435deec2ea3.zip
Update hashes are now hex strings.
Fixes https://github.com/wixtoolset/issues/issues/6901.
Diffstat (limited to 'src/api/burn/WixToolset.Mba.Core/Engine.cs')
-rw-r--r--src/api/burn/WixToolset.Mba.Core/Engine.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/api/burn/WixToolset.Mba.Core/Engine.cs b/src/api/burn/WixToolset.Mba.Core/Engine.cs
index 5ebada36..e7ab533b 100644
--- a/src/api/burn/WixToolset.Mba.Core/Engine.cs
+++ b/src/api/burn/WixToolset.Mba.Core/Engine.cs
@@ -240,9 +240,9 @@ namespace WixToolset.Mba.Core
240 } 240 }
241 241
242 /// <inheritdoc/> 242 /// <inheritdoc/>
243 public void SetUpdate(string localSource, string downloadSource, long size, UpdateHashType hashType, byte[] hash) 243 public void SetUpdate(string localSource, string downloadSource, long size, UpdateHashType hashType, string hash)
244 { 244 {
245 this.engine.SetUpdate(localSource, downloadSource, size, hashType, hash, null == hash ? 0 : hash.Length); 245 this.engine.SetUpdate(localSource, downloadSource, size, hashType, hash);
246 } 246 }
247 247
248 /// <inheritdoc/> 248 /// <inheritdoc/>