瀏覽代碼

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

master^2
Takeshi Umeda 4 年之前
committed by Eugen Rochko
父節點
當前提交
b18aea91e3
共有 1 個文件被更改,包括 5 次插入0 次删除
  1. +5
    -0
      app/models/account_migration.rb

+ 5
- 0
app/models/account_migration.rb 查看文件

@@ -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


Loading…
取消
儲存