Update status model, use scope over deprecated visibility attribute

This commit is contained in:
Daniel Supernault 2020-12-27 18:00:43 -07:00
parent 7225c1f3af
commit f70826e18c
No known key found for this signature in database
GPG key ID: 0DEF1C662C9033F7
5 changed files with 8 additions and 8 deletions

View file

@ -304,7 +304,7 @@ class PublicApiController extends Controller
->whereIn('type', ['photo', 'photo:album', 'video', 'video:album', 'photo:video:album'])
->whereNotIn('profile_id', $filtered)
->whereLocal(true)
->whereVisibility('public')
->whereScope('public')
->orderBy('created_at', 'desc')
->limit($limit)
->get();
@ -332,7 +332,7 @@ class PublicApiController extends Controller
->whereNotIn('profile_id', $filtered)
->with('profile', 'hashtags', 'mentions')
->whereLocal(true)
->whereVisibility('public')
->whereScope('public')
->orderBy('created_at', 'desc')
->simplePaginate($limit);
}