forked from AkkomaGang/akkoma
Use "repeated" instead of "retweeted" for repeated statuses in Twitter API
This makes it consistent with the language used in Pleroma FE (at least in English). Resolves https://git.pleroma.social/pleroma/pleroma-fe/issues/533
This commit is contained in:
parent
e4bc4408f9
commit
2a54e8c1f5
2 changed files with 3 additions and 3 deletions
|
@ -170,7 +170,7 @@ def render("activity.json", %{activity: %{data: %{"type" => "Announce"}} = activ
|
||||||
created_at = activity.data["published"] |> Utils.date_to_asctime()
|
created_at = activity.data["published"] |> Utils.date_to_asctime()
|
||||||
announced_activity = Activity.get_create_by_object_ap_id(activity.data["object"])
|
announced_activity = Activity.get_create_by_object_ap_id(activity.data["object"])
|
||||||
|
|
||||||
text = "#{user.nickname} retweeted a status."
|
text = "#{user.nickname} repeated a status."
|
||||||
|
|
||||||
retweeted_status = render("activity.json", Map.merge(opts, %{activity: announced_activity}))
|
retweeted_status = render("activity.json", Map.merge(opts, %{activity: announced_activity}))
|
||||||
|
|
||||||
|
|
|
@ -295,8 +295,8 @@ test "an announce activity" do
|
||||||
"id" => announce.id,
|
"id" => announce.id,
|
||||||
"is_local" => true,
|
"is_local" => true,
|
||||||
"is_post_verb" => false,
|
"is_post_verb" => false,
|
||||||
"statusnet_html" => "shp retweeted a status.",
|
"statusnet_html" => "shp repeated a status.",
|
||||||
"text" => "shp retweeted a status.",
|
"text" => "shp repeated a status.",
|
||||||
"uri" => "tag:#{announce.data["id"]}:objectType=note",
|
"uri" => "tag:#{announce.data["id"]}:objectType=note",
|
||||||
"user" => UserView.render("show.json", user: other_user),
|
"user" => UserView.render("show.json", user: other_user),
|
||||||
"retweeted_status" => ActivityView.render("activity.json", activity: activity),
|
"retweeted_status" => ActivityView.render("activity.json", activity: activity),
|
||||||
|
|
Loading…
Reference in a new issue