1
0
Fork 0

Update FederationController

This commit is contained in:
Daniel Supernault 2019-04-01 21:15:34 -06:00
parent 788c8bc640
commit 372a28c56a
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 7 additions and 2 deletions

View File

@ -63,6 +63,11 @@ class FederationController extends Controller
$follower = Auth::user()->profile;
$url = $request->input('url');
$url = Helpers::validateUrl($url);
if(!$url) {
return;
}
RemoteFollowPipeline::dispatch($follower, $url);