mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-23 06:51:27 +00:00
Update FederationController
This commit is contained in:
parent
788c8bc640
commit
372a28c56a
1 changed files with 7 additions and 2 deletions
|
@ -63,6 +63,11 @@ class FederationController extends Controller
|
||||||
|
|
||||||
$follower = Auth::user()->profile;
|
$follower = Auth::user()->profile;
|
||||||
$url = $request->input('url');
|
$url = $request->input('url');
|
||||||
|
$url = Helpers::validateUrl($url);
|
||||||
|
|
||||||
|
if(!$url) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
RemoteFollowPipeline::dispatch($follower, $url);
|
RemoteFollowPipeline::dispatch($follower, $url);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue