mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-26 08:13:16 +00:00
Merge pull request #114 from m4sk1n/settings-bio-fix
Fix “Can't update account settings without setting a bio”
This commit is contained in:
commit
dcd6edb154
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ class SettingsController extends Controller
|
||||||
{
|
{
|
||||||
$this->validate($request, [
|
$this->validate($request, [
|
||||||
'name' => 'required|string|max:30',
|
'name' => 'required|string|max:30',
|
||||||
'bio' => 'string|max:125'
|
'bio' => 'nullable|string|max:125'
|
||||||
]);
|
]);
|
||||||
|
|
||||||
$changes = false;
|
$changes = false;
|
||||||
|
|
Loading…
Reference in a new issue