Merge branch 'length-limit-bio' into 'develop'
[akkoma] / lib / pleroma / web / activity_pub / mrf / no_placeholder_text_policy.ex
index f30fee0d506068cfdaa588c2c03515cdcb542ad1..86a48bda58dc4a0c9e2e2b2f63a2142fc587d7b1 100644 (file)
@@ -10,19 +10,11 @@ defmodule Pleroma.Web.ActivityPub.MRF.NoPlaceholderTextPolicy do
   def filter(
         %{
           "type" => "Create",
-          "object" => %{"content" => content, "attachment" => _attachment} = child_object
+          "object" => %{"content" => content, "attachment" => _} = _child_object
         } = object
       )
       when content in [".", "<p>.</p>"] do
-    child_object =
-      child_object
-      |> Map.put("content", "")
-
-    object =
-      object
-      |> Map.put("object", child_object)
-
-    {:ok, object}
+    {:ok, put_in(object, ["object", "content"], "")}
   end
 
   @impl true