kopia lustrzana https://github.com/nextcloud/social
Merge pull request #1784 from nextcloud/fix/noid/save-action-in-local
always save actionpull/1785/head
commit
c53e47cfa9
|
@ -101,18 +101,6 @@ class AnnounceInterface extends AbstractActivityPubInterface implements IActivit
|
|||
$item->checkOrigin($item->getId());
|
||||
$item->checkOrigin($item->getActorId());
|
||||
|
||||
try {
|
||||
$this->actionsRequest->getActionFromItem($item);
|
||||
} catch (ActionDoesNotExistException $e) {
|
||||
$this->actionsRequest->save($item);
|
||||
|
||||
try {
|
||||
$post = $this->streamRequest->getStreamById($item->getObjectId());
|
||||
$this->updateDetails($post);
|
||||
} catch (Exception $e) {
|
||||
}
|
||||
}
|
||||
|
||||
$this->save($item);
|
||||
}
|
||||
|
||||
|
@ -191,6 +179,12 @@ class AnnounceInterface extends AbstractActivityPubInterface implements IActivit
|
|||
return; // should not happen.
|
||||
}
|
||||
|
||||
try {
|
||||
$this->actionsRequest->getActionFromItem($item);
|
||||
} catch (ActionDoesNotExistException $e) {
|
||||
$this->actionsRequest->save($item);
|
||||
}
|
||||
|
||||
$this->updateDetails($post);
|
||||
$this->generateNotification($post, $actor);
|
||||
}
|
||||
|
|
Ładowanie…
Reference in New Issue