From: kPherox Date: Sat, 24 Aug 2019 22:02:32 +0000 (+0900) Subject: Fix type of fields_attributes X-Git-Url: https://git.squeep.com/?a=commitdiff_plain;ds=inline;h=705b5adfc436b18ab3d1b8ff94274d9a2a6a6912;hp=45e21a9df4a7b58d28624534fdde3dc9e31c6813;p=akkoma Fix type of fields_attributes Convert tuple list to map list when parameters is `:urlencoded` or `:multipart` --- diff --git a/lib/pleroma/web/mastodon_api/mastodon_api_controller.ex b/lib/pleroma/web/mastodon_api/mastodon_api_controller.ex index 98b2e75f3..2826cee8c 100644 --- a/lib/pleroma/web/mastodon_api/mastodon_api_controller.ex +++ b/lib/pleroma/web/mastodon_api/mastodon_api_controller.ex @@ -143,6 +143,13 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIController do |> Enum.concat(Formatter.get_emoji_map(emojis_text)) |> 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)) + else + params + end + info_params = [ :no_rich_text,