Update StatusController, fix reblog_count bug

pull/2147/head
Daniel Supernault 5 years ago
parent 8763bfc5c4
commit 1dc65e933e
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7

@ -175,7 +175,7 @@ class StatusController extends Controller
->whereIn('scope', ['public', 'unlisted'])
->findOrFail($request->input('item'));
$count = $status->shares_count;
$count = $status->shares()->count();
$exists = Status::whereProfileId(Auth::user()->profile->id)
->whereReblogOfId($status->id)

Loading…
Cancel
Save