Update SearchController

This commit is contained in:
Daniel Supernault 2019-04-12 22:12:22 -06:00
parent 3595552f02
commit ac4eea6c85
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ class SearchController extends Controller
$hash = hash('sha256', $tag);
$tokens = Cache::remember('api:search:tag:'.$hash, now()->addMinutes(5), function () use ($tag) {
$tokens = [];
if(Helpers::validateUrl($tag) != false) {
if(Helpers::validateUrl($tag) != false && config('pixelfed.activitypub_enabled') == true) {
$remote = Helpers::fetchFromUrl($tag);
if(isset($remote['type']) && in_array($remote['type'], ['Create', 'Person']) == true) {
$type = $remote['type'];