Fixed code so that GNU social can receive Mastodon boosts (from GNU social nightly commit: c741d1a52a
)
This commit is contained in:
parent
50f9f23ff1
commit
a6e33bdd6a
|
@ -180,7 +180,7 @@ class Activity
|
||||||
foreach ($objectEls as $objectEl) {
|
foreach ($objectEls as $objectEl) {
|
||||||
// Special case for embedded activities
|
// Special case for embedded activities
|
||||||
$objectType = ActivityUtils::childContent($objectEl, self::OBJECTTYPE, self::SPEC);
|
$objectType = ActivityUtils::childContent($objectEl, self::OBJECTTYPE, self::SPEC);
|
||||||
if (!empty($objectType) && $objectType == ActivityObject::ACTIVITY) {
|
if ((!empty($objectType) && $objectType == ActivityObject::ACTIVITY) || $this->verb == ActivityVerb::SHARE) {
|
||||||
$this->objects[] = new Activity($objectEl);
|
$this->objects[] = new Activity($objectEl);
|
||||||
} else {
|
} else {
|
||||||
$this->objects[] = new ActivityObject($objectEl);
|
$this->objects[] = new ActivityObject($objectEl);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user