diff options
| author | lain <lain@soykaf.club> | 2018-02-19 08:34:55 +0100 | 
|---|---|---|
| committer | lain <lain@soykaf.club> | 2018-02-19 08:34:55 +0100 | 
| commit | 313f186a66fd89bda36c684a926d3118a489064a (patch) | |
| tree | 0349d4160c8ba5c54c49fe2d47dd3870dc7580ec /lib | |
| parent | 932d346d35e0b16537ee2527ca2253f00c214c12 (diff) | |
| download | pleroma-313f186a66fd89bda36c684a926d3118a489064a.tar.gz pleroma-313f186a66fd89bda36c684a926d3118a489064a.zip | |
Ostatus: Use all recipients as mentions.
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/pleroma/web/ostatus/activity_representer.ex | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/lib/pleroma/web/ostatus/activity_representer.ex b/lib/pleroma/web/ostatus/activity_representer.ex index aa2b1df39..33e5e0009 100644 --- a/lib/pleroma/web/ostatus/activity_representer.ex +++ b/lib/pleroma/web/ostatus/activity_representer.ex @@ -76,7 +76,7 @@ defmodule Pleroma.Web.OStatus.ActivityRepresenter do      in_reply_to = get_in_reply_to(activity.data)      author = if with_author, do: [{:author, UserRepresenter.to_simple_form(user)}], else: [] -    mentions = activity.data["to"] |> get_mentions +    mentions = activity.recipients |> get_mentions      categories = (activity.data["object"]["tag"] || [])      |> Enum.map(fn (tag) -> {:category, [term: to_charlist(tag)], []} end) @@ -110,7 +110,7 @@ defmodule Pleroma.Web.OStatus.ActivityRepresenter do      _in_reply_to = get_in_reply_to(activity.data)      author = if with_author, do: [{:author, UserRepresenter.to_simple_form(user)}], else: [] -    mentions = activity.data["to"] |> get_mentions +    mentions = activity.recipients |> get_mentions      [        {:"activity:verb", ['http://activitystrea.ms/schema/1.0/favorite']}, @@ -144,7 +144,7 @@ defmodule Pleroma.Web.OStatus.ActivityRepresenter do      retweeted_xml = to_simple_form(retweeted_activity, retweeted_user, true) -    mentions = activity.data["to"] |> get_mentions +    mentions = activity.recipients |> get_mentions      [        {:"activity:object-type", ['http://activitystrea.ms/schema/1.0/activity']},        {:"activity:verb", ['http://activitystrea.ms/schema/1.0/share']}, @@ -168,7 +168,7 @@ defmodule Pleroma.Web.OStatus.ActivityRepresenter do      author = if with_author, do: [{:author, UserRepresenter.to_simple_form(user)}], else: [] -    mentions = (activity.data["to"] || []) |> get_mentions +    mentions = (activity.recipients || []) |> get_mentions      [        {:"activity:object-type", ['http://activitystrea.ms/schema/1.0/activity']},        {:"activity:verb", ['http://activitystrea.ms/schema/1.0/follow']}, @@ -196,7 +196,7 @@ defmodule Pleroma.Web.OStatus.ActivityRepresenter do      author = if with_author, do: [{:author, UserRepresenter.to_simple_form(user)}], else: []      follow_activity = Activity.get_by_ap_id(activity.data["object"]) -    mentions = (activity.data["to"] || []) |> get_mentions +    mentions = (activity.recipients || []) |> get_mentions      [        {:"activity:object-type", ['http://activitystrea.ms/schema/1.0/activity']},        {:"activity:verb", ['http://activitystrea.ms/schema/1.0/unfollow']}, | 
