mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 00:34:50 +00:00
Update RemoteStatusPipeline, fix reply check
This commit is contained in:
parent
fab8f25e9b
commit
618b67271a
1 changed files with 6 additions and 4 deletions
|
@ -93,11 +93,13 @@ class RemoteStatusDelete implements ShouldQueue
|
|||
{
|
||||
|
||||
if($status->in_reply_to_id) {
|
||||
$parent = Status::findOrFail($status->in_reply_to_id);
|
||||
$parent = Status::find($status->in_reply_to_id);
|
||||
if($parent) {
|
||||
--$parent->reply_count;
|
||||
$parent->save();
|
||||
StatusService::del($parent->id);
|
||||
}
|
||||
}
|
||||
|
||||
AccountInterstitial::where('item_type', 'App\Status')
|
||||
->where('item_id', $status->id)
|
||||
|
|
Loading…
Reference in a new issue