fix: append field values to bio before parsing

This commit is contained in:
kPherox 2023-03-15 23:55:24 +09:00
commit 83c7415803
No known key found for this signature in database
GPG key ID: C04751C2BFA2F62D
2 changed files with 7 additions and 11 deletions

View file

@ -27,8 +27,8 @@ defmodule Pleroma.Web.Metadata.Providers.RelMeTest do
assert RelMe.build_tags(%{user: user}) == [
{:link, [rel: "me", href: "http://some3.com"], []},
{:link, [rel: "me", href: "http://profile.com"], []},
{:link, [rel: "me", href: "https://another-link.com"], []}
{:link, [rel: "me", href: "https://another-link.com"], []},
{:link, [rel: "me", href: "http://profile.com"], []}
]
end
end