Skip to content

Commit 27e4d0a

Browse files
authored
Merge pull request #8 from adjenks/master
Separate PT_CLSID from PT_MV_CLSID
2 parents f4bb97b + 6812fcd commit 27e4d0a

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

src/MAPI/Property/PropertyStore.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,6 +331,10 @@ protected function parseProperties($obj)
331331
break;
332332

333333
case '0048': // PT_CLSID
334+
$value = (string)OleGuid::fromBytes($rawProp);
335+
$this->addProperty($key, $value);
336+
break;
337+
334338
case '1048': // PT_MV_CLSID
335339
$value = (string)OleGuid::fromBytes(substr($rawProp, 8));
336340
$this->addProperty($key, $value);
@@ -423,4 +427,4 @@ public function getNameId()
423427
}
424428

425429

426-
}
430+
}

0 commit comments

Comments
 (0)