Skip to content

Commit

Permalink
Merge pull request #8 from adjenks/master
Browse files Browse the repository at this point in the history
Separate PT_CLSID from PT_MV_CLSID
  • Loading branch information
hfig authored Nov 21, 2019
2 parents f4bb97b + 6812fcd commit 27e4d0a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/MAPI/Property/PropertyStore.php
Original file line number Diff line number Diff line change
Expand Up @@ -331,6 +331,10 @@ protected function parseProperties($obj)
break;

case '0048': // PT_CLSID
$value = (string)OleGuid::fromBytes($rawProp);
$this->addProperty($key, $value);
break;

case '1048': // PT_MV_CLSID
$value = (string)OleGuid::fromBytes(substr($rawProp, 8));
$this->addProperty($key, $value);
Expand Down Expand Up @@ -423,4 +427,4 @@ public function getNameId()
}


}
}

0 comments on commit 27e4d0a

Please sign in to comment.