Better verb comparison

This commit is contained in:
Evan Prodromou 2013-06-30 12:08:11 -04:00
parent e502bba259
commit 540b90dbd9
1 changed files with 2 additions and 1 deletions

View File

@ -389,7 +389,8 @@ class Activity
if ($object instanceof Activity) {
// Sharing a post activity is more like sharing the original object
if ($this->verb == 'share' && $object->verb == 'post') {
if (ActivityVerb::canonical($this->verb) == ActivityVerb::canonical(ActivityVerb::SHARE) &&
ActivityVerb::canonical($object->verb) == ActivityVerb::canonical(ActivityVerb::POST)) {
// XXX: Here's one for the obfuscation record books
$object = $object->objects[0];
}