forked from mirror/pixelfed
Merge pull request #1116 from pixelfed/frontend-ui-refactor
Update SearchController
This commit is contained in:
commit
0f35547471
|
@ -85,7 +85,8 @@ class SearchController extends Controller
|
||||||
->whereNull('status')
|
->whereNull('status')
|
||||||
->where('id', '!=', Auth::user()->profile->id)
|
->where('id', '!=', Auth::user()->profile->id)
|
||||||
->where('username', 'like', '%'.$tag.'%')
|
->where('username', 'like', '%'.$tag.'%')
|
||||||
->orWhere('remote_url', $tag)
|
->whereNull('domain')
|
||||||
|
//->orWhere('remote_url', $tag)
|
||||||
->limit(20)
|
->limit(20)
|
||||||
->get();
|
->get();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue