Merge pull request #1784 from nextcloud/fix/noid/save-action-in-local

always save action
pull/1785/head
Maxence Lange 2023-06-14 11:25:26 -01:00 zatwierdzone przez GitHub
commit c53e47cfa9
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 6 dodań i 12 usunięć

Wyświetl plik

@ -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);
}