David J Evans
Results
2
comments of
David J Evans
I see the same thing when using this (I added an MD5 computation across the pipeline to narrow down the corruption to here) ` private async Task DropFile(IFileListEntry[] files) {...
Found the solution (or workaround) was to use: `using var ms = new MemoryStream();` `await file.Data.CopyToAsync(ms);` `var data = ms.ToArray();` Instead of: `//byte[] data = new byte[file.Data.Length];` `//await file.Data.ReadAsync(data, 0,...