Change to delete empty name field
authorkPherox <admin@mail.kr-kp.com>
Sat, 24 Aug 2019 22:04:46 +0000 (07:04 +0900)
committerkPherox <admin@mail.kr-kp.com>
Sat, 24 Aug 2019 22:34:15 +0000 (07:34 +0900)
lib/pleroma/web/mastodon_api/mastodon_api_controller.ex

index 2826cee8cf5e72514f252935873cc38e7530128c..ca22306302c4ae0f93b49a6f23a879a06b691d28 100644 (file)
@@ -144,8 +144,15 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIController do
       |> Enum.dedup()
 
     params =
-      if Map.has_key?(params, "fields_attributes") && Enum.all?(params["fields_attributes"], &is_tuple/1) do
-        Map.update!(params, "fields_attributes", &Enum.map(&1, fn {_, v} -> v end))
+      if Map.has_key?(params, "fields_attributes") do
+        Map.update!(params, "fields_attributes", fn fields ->
+          if Enum.all?(fields, &is_tuple/1) do
+            Enum.map(fields, fn {_, v} -> v end)
+          else
+            fields
+          end
+          |> Enum.filter(fn %{"name" => n} -> n != "" end)
+        end)
       else
         params
       end