forked from AkkomaGang/akkoma
TwitterAPI: support follow activities without published date.
This commit is contained in:
parent
1633470e4a
commit
01faa7c555
1 changed files with 2 additions and 1 deletions
|
@ -56,7 +56,8 @@ def to_map(%Activity{data: %{"type" => "Like", "published" => created_at}} = act
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
def to_map(%Activity{data: %{"type" => "Follow", "published" => created_at, "object" => followed_id}} = activity, %{user: user} = opts) do
|
def to_map(%Activity{data: %{"type" => "Follow", "object" => followed_id}} = activity, %{user: user} = opts) do
|
||||||
|
created_at = activity.data["published"] || (DateTime.to_iso8601(activity.inserted_at))
|
||||||
created_at = created_at |> Utils.date_to_asctime
|
created_at = created_at |> Utils.date_to_asctime
|
||||||
|
|
||||||
followed = User.get_cached_by_ap_id(followed_id)
|
followed = User.get_cached_by_ap_id(followed_id)
|
||||||
|
|
Loading…
Reference in a new issue