Skip to content

Commit

Permalink
Merge pull request #457 from ntomasn/fixForReponseContentLengthMismatch
Browse files Browse the repository at this point in the history
Fix for #453
  • Loading branch information
dansiegel authored Jun 28, 2024
2 parents 5239ebe + e13b7a4 commit c2df749
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/AvantiPoint.Packages.Core/Extensions/StreamExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ public static MemoryStream AsMemoryStream(this Stream original)
outputStream.Write(buffer, 0, read);
}

outputStream.Position = 0;

return outputStream;
}

Expand Down

0 comments on commit c2df749

Please sign in to comment.