We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f4bb97b + 6812fcd commit 27e4d0aCopy full SHA for 27e4d0a
1 file changed
src/MAPI/Property/PropertyStore.php
@@ -331,6 +331,10 @@ protected function parseProperties($obj)
331
break;
332
333
case '0048': // PT_CLSID
334
+ $value = (string)OleGuid::fromBytes($rawProp);
335
+ $this->addProperty($key, $value);
336
+ break;
337
+
338
case '1048': // PT_MV_CLSID
339
$value = (string)OleGuid::fromBytes(substr($rawProp, 8));
340
$this->addProperty($key, $value);
@@ -423,4 +427,4 @@ public function getNameId()
423
427
}
424
428
425
429
426
-}
430
+}
0 commit comments