Skip to content

Commit

Permalink
Restored OLEProperties for all \u0005 streams
Browse files Browse the repository at this point in the history
  • Loading branch information
farfilli committed Oct 15, 2024
1 parent 0c8fc18 commit ea387cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sources/Structured Storage Explorer/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ private void treeView1_MouseUp(object sender, MouseEventArgs e)
dgvUserDefinedProperties.DataSource = null;
dgvOLEProps.DataSource = null;

if (stream.Name == "\u0005SummaryInformation" || stream.Name == "\u0005DocumentSummaryInformation")
if (stream.Name.StartsWith("\u0005")) //(stream.Name == "\u0005SummaryInformation" || stream.Name == "\u0005DocumentSummaryInformation")
{
OLEPropertiesContainer c = stream.AsOLEPropertiesContainer();

Expand Down

0 comments on commit ea387cb

Please sign in to comment.