Update SearchController

This commit is contained in:
Daniel Supernault 2019-04-17 23:10:39 -06:00
parent 9ebddd0fb6
commit a538d1d09a
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 1 additions and 2 deletions

View File

@ -92,9 +92,9 @@ class SearchController extends Controller
});
$users = Profile::select('username', 'name', 'id')
->whereNull('status')
->whereNull('domain')
->where('id', '!=', Auth::user()->profile->id)
->where('username', 'like', '%'.$tag.'%')
->whereNull('domain')
//->orWhere('remote_url', $tag)
->limit(20)
->get();
@ -129,7 +129,6 @@ class SearchController extends Controller
->whereNull('reblog_of_id')
->whereProfileId(Auth::user()->profile->id)
->where('caption', 'like', '%'.$tag.'%')
->orWhere('uri', $tag)
->latest()
->limit(10)
->get();