logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma git clone https://hacktivis.me/git/pleroma.git
commit: ac04ba240aa824ce55c12b70643fc060917d2a2a
parent 9bdea19d833cb3fa2dff4bad4f9083ed74085a89
Author: Roger Braun <roger@rogerbraun.net>
Date:   Sat,  1 Jul 2017 02:00:12 +0200

Larger bio length limit for remote accounts.

Diffstat:

Mlib/pleroma/user.ex2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/pleroma/user.ex b/lib/pleroma/user.ex @@ -69,7 +69,7 @@ defmodule Pleroma.User do |> validate_required([:name, :ap_id, :nickname]) |> unique_constraint(:nickname) |> validate_format(:nickname, @email_regex) - |> validate_length(:bio, max: 1000) + |> validate_length(:bio, max: 5000) |> validate_length(:name, max: 100) |> put_change(:local, false) end