mirror of
https://github.com/friendica/friendica
synced 2025-04-30 09:04:22 +02:00
AP: Parsing of messages from Pleroma should work now again
This commit is contained in:
parent
dc154ac07d
commit
eef85584c2
4 changed files with 43 additions and 39 deletions
|
@ -709,7 +709,7 @@ class Transmitter
|
|||
$condition = ['item-uri' => $item['uri'], 'protocol' => Conversation::PARCEL_ACTIVITYPUB];
|
||||
$conversation = DBA::selectFirst('conversation', ['source'], $condition);
|
||||
if (DBA::isResult($conversation)) {
|
||||
$data = json_decode($conversation['source']);
|
||||
$data = json_decode($conversation['source'], true);
|
||||
if (!empty($data)) {
|
||||
return $data;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue