Merge pull request #114 from m4sk1n/settings-bio-fix

Fix “Can't update account settings without setting a bio”
pull/86/head^2
daniel 2018-06-01 16:59:56 -06:00 zatwierdzone przez GitHub
commit dcd6edb154
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -22,7 +22,7 @@ class SettingsController extends Controller
{
$this->validate($request, [
'name' => 'required|string|max:30',
'bio' => 'string|max:125'
'bio' => 'nullable|string|max:125'
]);
$changes = false;