forked from AkkomaGang/akkoma
Use follower address in user entry.
This commit is contained in:
parent
396c32a6da
commit
140f72725d
4 changed files with 6 additions and 5 deletions
|
@ -99,7 +99,7 @@ def make_like_data(%User{ap_id: ap_id} = actor, %{data: %{"id" => id}} = object,
|
|||
"type" => "Like",
|
||||
"actor" => ap_id,
|
||||
"object" => id,
|
||||
"to" => [User.ap_followers(actor), object.data["actor"]],
|
||||
"to" => [actor.follower_address, object.data["actor"]],
|
||||
"context" => object.data["context"]
|
||||
}
|
||||
|
||||
|
@ -167,7 +167,7 @@ def make_announce_data(%User{ap_id: ap_id} = user, %Object{data: %{"id" => id}}
|
|||
"type" => "Announce",
|
||||
"actor" => ap_id,
|
||||
"object" => id,
|
||||
"to" => [User.ap_followers(user), object.data["actor"]],
|
||||
"to" => [user.follower_address, object.data["actor"]],
|
||||
"context" => object.data["context"]
|
||||
}
|
||||
|
||||
|
|
|
@ -61,7 +61,7 @@ def get_mentions(entry) do
|
|||
|
||||
def make_to_list(actor, mentions) do
|
||||
[
|
||||
User.ap_followers(actor)
|
||||
actor.follower_address
|
||||
] ++ mentions
|
||||
end
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@ defmodule Pleroma.Web.TwitterAPI.TwitterAPI do
|
|||
|
||||
def to_for_user_and_mentions(user, mentions, inReplyTo) do
|
||||
default_to = [
|
||||
User.ap_followers(user),
|
||||
user.follower_address,
|
||||
"https://www.w3.org/ns/activitystreams#Public"
|
||||
]
|
||||
|
||||
|
|
|
@ -9,7 +9,8 @@ defmodule Pleroma.Web.TwitterAPI.TwitterAPITest do
|
|||
import Pleroma.Factory
|
||||
|
||||
test "create a status" do
|
||||
user = UserBuilder.build(%{ap_id: "142344"})
|
||||
# user = UserBuilder.build(%{ap_id: "142344"})
|
||||
user = insert(:user, %{ap_id: "142344"})
|
||||
_mentioned_user = UserBuilder.insert(%{nickname: "shp", ap_id: "shp"})
|
||||
|
||||
object_data = %{
|
||||
|
|
Loading…
Reference in a new issue