1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/pixelfed_ynh.git synced 2024-09-03 20:06:04 +02:00

Update AP Inbox, fix url bug

This commit is contained in:
Daniel Supernault 2019-09-06 22:00:24 -06:00
parent 76a2d38275
commit 6e4a56236e
No known key found for this signature in database
GPG key ID: 0DEF1C662C9033F7

View file

@ -130,7 +130,7 @@ class Inbox
} }
$inReplyTo = $activity['inReplyTo']; $inReplyTo = $activity['inReplyTo'];
$url = $activity['id']; $url = isset($activity['url']) ? $activity['url'] : $activity['id'];
Helpers::statusFirstOrFetch($url, true); Helpers::statusFirstOrFetch($url, true);
return; return;
@ -148,7 +148,7 @@ class Inbox
return; return;
} }
$url = $activity['id']; $url = isset($activity['url']) ? $activity['url'] : $activity['id'];
if(Status::whereUrl($url)->exists()) { if(Status::whereUrl($url)->exists()) {
return; return;
} }