forked from mirror/pixelfed
Update StatusReplyPipeline
This commit is contained in:
parent
049ce7370c
commit
fe81378808
2 changed files with 8 additions and 0 deletions
|
@ -60,6 +60,10 @@ class CommentPipeline implements ShouldQueue
|
||||||
$actor = $comment->profile;
|
$actor = $comment->profile;
|
||||||
|
|
||||||
if(config('database.default') === 'mysql') {
|
if(config('database.default') === 'mysql') {
|
||||||
|
$count = DB::select(DB::raw("select id, in_reply_to_id from statuses, (select @pv := :kid) initialisation where id > @pv and find_in_set(in_reply_to_id, @pv) > 0 and @pv := concat(@pv, ',', id)"), [ 'kid' => $status->id]);
|
||||||
|
$status->reply_count = count($count);
|
||||||
|
$status->save();
|
||||||
|
} else {
|
||||||
$status->reply_count = $status->reply_count + 1;
|
$status->reply_count = $status->reply_count + 1;
|
||||||
$status->save();
|
$status->save();
|
||||||
}
|
}
|
||||||
|
|
|
@ -70,6 +70,10 @@ class StatusReplyPipeline implements ShouldQueue
|
||||||
}
|
}
|
||||||
|
|
||||||
if(config('database.default') === 'mysql') {
|
if(config('database.default') === 'mysql') {
|
||||||
|
$count = DB::select(DB::raw("select id, in_reply_to_id from statuses, (select @pv := :kid) initialisation where id > @pv and find_in_set(in_reply_to_id, @pv) > 0 and @pv := concat(@pv, ',', id)"), [ 'kid' => $reply->id]);
|
||||||
|
$reply->reply_count = count($count);
|
||||||
|
$reply->save();
|
||||||
|
} else {
|
||||||
$reply->reply_count = $reply->reply_count + 1;
|
$reply->reply_count = $reply->reply_count + 1;
|
||||||
$reply->save();
|
$reply->save();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue