Accept acct starting with @ in account migration (#11907)

lolsob-rspec
Takeshi Umeda 2019-09-21 16:11:38 +09:00 committed by Eugen Rochko
parent 45fe523a18
commit 9267e4310d
1 changed files with 5 additions and 0 deletions

View File

@ -46,6 +46,11 @@ class AccountMigration < ApplicationRecord
created_at + COOLDOWN_PERIOD
end
def acct=(val)
val = val.to_s.strip
super(val.start_with?('@') ? val[1..-1] : val)
end
private
def set_target_account