fix(nodeinfo): fix getting application actor information from NodeInfo response
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
@@ -25,9 +25,10 @@ defmodule Mobilizon.Federation.NodeInfo do
|
||||
|
||||
defp extract_application_actor(body) do
|
||||
body
|
||||
|> Enum.find(%{rel: @application_uri, href: nil}, fn %{rel: rel, href: href} ->
|
||||
|> Map.get("links", [])
|
||||
|> Enum.find(%{"rel" => @application_uri, "href" => nil}, fn %{"rel" => rel, "href" => href} ->
|
||||
rel == @application_uri and is_binary(href)
|
||||
end)
|
||||
|> Map.get(:href)
|
||||
|> Map.get("href")
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user