diff options
author | lain <lain@soykaf.club> | 2018-05-23 17:25:24 +0200 |
---|---|---|
committer | lain <lain@soykaf.club> | 2018-05-23 17:25:24 +0200 |
commit | 0b5bc62b33a655488afe73b35945adcbab11300d (patch) | |
tree | fa2bc3e558d827fa4448f288105429f4a3aa6619 /lib | |
parent | 06c97f211fc4a8c9c9c7e77143c3398ade817ab4 (diff) | |
download | pleroma-0b5bc62b33a655488afe73b35945adcbab11300d.tar.gz |
Don't save double tags in AP objects we create
This crashed Mastodon workers.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pleroma/web/common_api/utils.ex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pleroma/web/common_api/utils.ex b/lib/pleroma/web/common_api/utils.ex index e774743a2..71412eea8 100644 --- a/lib/pleroma/web/common_api/utils.ex +++ b/lib/pleroma/web/common_api/utils.ex @@ -133,7 +133,7 @@ defmodule Pleroma.Web.CommonAPI.Utils do "context" => context, "attachment" => attachments, "actor" => actor, - "tag" => tags |> Enum.map(fn {_, tag} -> tag end) + "tag" => tags |> Enum.map(fn {_, tag} -> tag end) |> Enum.uniq() } if inReplyTo do |