You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
log.LogMessage(MessageImportance.Low,$"Copying signed stream from {signedPart.Value.FileSignInfo.FullPath} to {FileSignInfo.FullPath} -> {relativeName}.");
346
-
entry.DataStream=signedStream;
347
-
writer.WriteEntry(entry);
348
-
continue;
349
347
}
350
348
else
351
349
{
350
+
dataStream=newMemoryStream();
351
+
entry.DataStream.CopyTo(dataStream);
352
+
dataStream.Position=0;
352
353
log.LogMessage(MessageImportance.Low,$"Didn't find signed part for nested file: {FileSignInfo.FullPath} -> {relativeName}");
0 commit comments