Fix remote account in contact account setting not being used (#19351)
This commit is contained in:
parent
c60f9cb865
commit
abf6c87ee8
2 changed files with 6 additions and 4 deletions
|
@ -12,7 +12,9 @@ class InstancePresenter < ActiveModelSerializers::Model
|
|||
end
|
||||
|
||||
def account
|
||||
Account.find_local(Setting.site_contact_username.strip.gsub(/\A@/, ''))
|
||||
username, domain = Setting.site_contact_username.strip.gsub(/\A@/, '').split('@', 2)
|
||||
domain = nil if TagManager.instance.local_domain?(domain)
|
||||
Account.find_remote(username, domain) if username.present?
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue