diff --git a/app/Http/Controllers/MicropubController.php b/app/Http/Controllers/MicropubController.php index 5e7e3a92..411580d9 100644 --- a/app/Http/Controllers/MicropubController.php +++ b/app/Http/Controllers/MicropubController.php @@ -124,7 +124,7 @@ class MicropubController extends Controller //we have a valid token, is `syndicate-to` set? if ($request->input('q') === 'syndicate-to') { return response()->json([ - 'syndicate-to' => config('syndication.targets') + 'syndicate-to' => config('syndication.targets'), ]); } //nope, how about a geo URL? @@ -148,7 +148,7 @@ class MicropubController extends Controller //nope, ho about a config query? if ($request->input('q') == 'config') { return response()->json([ - 'syndicate-to' => config('syndication.targets') + 'syndicate-to' => config('syndication.targets'), ]); }