Update AP Inbox

This commit is contained in:
Daniel Supernault 2020-11-18 15:29:54 -07:00
parent 8444d2dc50
commit 11a616b67d
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 2 additions and 1 deletions

View File

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