1
0
Fork 0

Update Status model, fixes #1637

This commit is contained in:
Daniel Supernault 2019-10-07 02:49:23 -06:00
parent c952442077
commit ccaefe3f7f
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 2 additions and 2 deletions

View File

@ -370,8 +370,8 @@ class Status extends Model
return $mention->permalink();
})->toArray();
if($status->in_reply_to_id != null) {
$parent = $status->parent();
if($this->in_reply_to_id != null) {
$parent = $this->parent();
if($parent) {
$mentions = array_merge([$parent->profile->permalink()], $mentions);
}