Fix crash in alias settings page (#18004)

This commit is contained in:
Claire 2022-04-09 20:11:06 +02:00 committed by GitHub
parent 23b61a753a
commit 5e13634c6b

View file

@ -28,6 +28,11 @@ class AccountAlias < ApplicationRecord
super(val.start_with?('@') ? val[1..-1] : val)
end
def pretty_acct
username, domain = acct.split('@')
domain.nil? ? username : "#{username}@#{Addressable::IDNA.to_unicode(domain)}"
end
private
def set_uri