mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-12-22 21:13:16 +00:00
Merge pull request #4576 from pixelfed/staging
Update RemoteStatusPipeline, fix reply check
This commit is contained in:
commit
211a9057fc
1 changed files with 6 additions and 4 deletions
|
@ -93,10 +93,12 @@ class RemoteStatusDelete implements ShouldQueue
|
||||||
{
|
{
|
||||||
|
|
||||||
if($status->in_reply_to_id) {
|
if($status->in_reply_to_id) {
|
||||||
$parent = Status::findOrFail($status->in_reply_to_id);
|
$parent = Status::find($status->in_reply_to_id);
|
||||||
--$parent->reply_count;
|
if($parent) {
|
||||||
$parent->save();
|
--$parent->reply_count;
|
||||||
StatusService::del($parent->id);
|
$parent->save();
|
||||||
|
StatusService::del($parent->id);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
AccountInterstitial::where('item_type', 'App\Status')
|
AccountInterstitial::where('item_type', 'App\Status')
|
||||||
|
|
Loading…
Reference in a new issue