Update AP Inbox

pull/2435/head
Daniel Supernault 4 years ago
parent 8444d2dc50
commit 11a616b67d
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7

@ -229,6 +229,7 @@ class Inbox
$status->rendered = $msg;
$status->visibility = 'direct';
$status->scope = 'direct';
$status->url = $activity['id'];
$status->in_reply_to_profile_id = $profile->id;
$status->save();
@ -245,7 +246,7 @@ class Inbox
foreach($activity['attachment'] as $a) {
$type = $a['mediaType'];
$url = $a['url'];
$valid = self::validateUrl($url);
$valid = Helpers::validateUrl($url);
if(in_array($type, $allowed) == false || $valid == false) {
continue;
}

Loading…
Cancel
Save