We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03e1775 commit 5a6440aCopy full SHA for 5a6440a
src/EasySign/Bundle.cs
@@ -234,7 +234,7 @@ public ZipArchive GetZipArchive(ZipArchiveMode mode = ZipArchiveMode.Read)
234
{
235
Logger.LogDebug("Loading bundle from memory with {Size} bytes", _rawZipContents.Length);
236
237
- MemoryStream ms = new MemoryStream(_rawZipContents);
+ MemoryStream ms = new MemoryStream(_rawZipContents, writable: false);
238
return new ZipArchive(ms, mode);
239
}
240
else
0 commit comments