Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Aragas committed Mar 27, 2024
1 parent 5ac55b6 commit d119984
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/BUTR.CrashReportServer/Services/GZipCompressor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ public async Task<MemoryStream> CompressAsync(Stream decompressedStream, Cancell
var compressedStream = _streamManager.GetStream();
await using var zipStream = new GZipStream(compressedStream, CompressionMode.Compress, true);
await decompressedStream.CopyToAsync(zipStream, ct);
compressedStream.Seek(0, SeekOrigin.Begin);
return compressedStream;
}

Expand Down

0 comments on commit d119984

Please sign in to comment.