diff options
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/pleroma/user.ex | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/lib/pleroma/user.ex b/lib/pleroma/user.ex index 3bd92c157..74ae5ef0d 100644 --- a/lib/pleroma/user.ex +++ b/lib/pleroma/user.ex @@ -177,6 +177,7 @@ defmodule Pleroma.User do        |> validate_format(:email, @email_regex)        |> validate_length(:bio, max: 1000)        |> validate_length(:name, min: 1, max: 100) +      |> put_change(:info, %Pleroma.User.Info{})      if changeset.valid? do        hashed = Pbkdf2.hashpwsalt(changeset.changes[:password]) | 
