diff --git a/app/Http/Controllers/API/ServerController.php b/app/Http/Controllers/API/ServerController.php index 402cae69..b91483bd 100644 --- a/app/Http/Controllers/API/ServerController.php +++ b/app/Http/Controllers/API/ServerController.php @@ -250,7 +250,7 @@ public function checkAccess() */ public function checkName() { - if (strlen((string) request('name')) > 24) { + if (strlen((string) request('name')) > 40) { return response()->json(['name' => 'Lütfen daha kısa bir sunucu adı girin.'], 422); } if (! Server::where('name', request('name'))->exists()) {