Keep ostatus id as activity id.
This commit is contained in:
parent
a16da387d2
commit
8a0d2b33d8
2 changed files with 3 additions and 1 deletions
|
|
@ -63,6 +63,7 @@ defmodule Pleroma.Web.OStatus do
|
|||
to = to ++ mentions
|
||||
|
||||
date = string_from_xpath("/entry/published", entry)
|
||||
id = string_from_xpath("/entry/id", entry)
|
||||
|
||||
object = %{
|
||||
"type" => "Note",
|
||||
|
|
@ -81,7 +82,7 @@ defmodule Pleroma.Web.OStatus do
|
|||
object
|
||||
end
|
||||
|
||||
ActivityPub.create(to, actor, context, object, %{}, date)
|
||||
ActivityPub.create(to, actor, context, object, %{"id" => id}, date)
|
||||
end
|
||||
|
||||
def find_or_make_user(uri) do
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue