logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma git clone https://anongit.hacktivis.me/git/pleroma.git/
commit: 6fa4f08e67a2ebebca2337259e1a5b5b6862b5ef
parent 1be8deda73add2dde23127be1f4da802dcb25b45
Author: Ekaterina Vaartis <vaartis@kotobank.ch>
Date:   Wed,  4 Jun 2025 11:43:18 +0300

Add back String.downcase that was accidentally removed from tag_validator

Diffstat:

Mlib/pleroma/web/activity_pub/object_validators/tag_validator.ex2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/pleroma/web/activity_pub/object_validators/tag_validator.ex b/lib/pleroma/web/activity_pub/object_validators/tag_validator.ex @@ -55,7 +55,7 @@ defmodule Pleroma.Web.ActivityPub.ObjectValidators.TagValidator do "#" <> name -> name name -> name end - + |> String.downcase() data = Map.put(data, "name", name)