Fix invalid display of account fields verified url

This commit is contained in:
KMY 2023-05-24 11:11:03 +09:00
parent 05a0d9ac1e
commit 8c12f4f910

View file

@ -58,6 +58,6 @@ module FormattingHelper
end end
def account_field_value_format(field, with_rel_me: true) def account_field_value_format(field, with_rel_me: true)
html_aware_format(field.value, field.account.local?, markdown: true, with_rel_me: with_rel_me, with_domains: true, multiline: false) html_aware_format(field.value, field.account.local?, markdown: false, with_rel_me: with_rel_me, with_domains: true, multiline: false)
end end
end end