forked from AkkomaGang/akkoma
Salmon: Take both versions of public keys.
This commit is contained in:
parent
dc1d3ceb72
commit
78516a8daa
1 changed files with 2 additions and 1 deletions
|
@ -29,7 +29,8 @@ def fetch_magic_key(salmon) do
|
|||
with [data, _, _, _, _] <- decode(salmon),
|
||||
doc <- XML.parse_document(data),
|
||||
uri when not is_nil(uri) <- XML.string_from_xpath("/entry/author[1]/uri", doc),
|
||||
{:ok, %{info: %{"magic_key" => magic_key}}} <- Pleroma.Web.OStatus.find_or_make_user(uri) do
|
||||
{:ok, public_key} <- User.get_public_key_for_ap_id(uri),
|
||||
magic_key <- encode_key(public_key) do
|
||||
{:ok, magic_key}
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue