diff --git a/app/Http/Controllers/SettingsController.php b/app/Http/Controllers/SettingsController.php index 14eced67c..8d21aee19 100644 --- a/app/Http/Controllers/SettingsController.php +++ b/app/Http/Controllers/SettingsController.php @@ -31,7 +31,7 @@ class SettingsController extends Controller { $this->validate($request, [ 'name' => 'required|string|max:' . config('pixelfed.max_name_length'), - 'bio' => 'nullable|string|max:' . config('pixelfed.max_bio_length') + 'bio' => 'nullable|string|max:' . config('pixelfed.max_bio_length'), 'website' => 'nullable|url', 'email' => 'nullable|email' ]);