fix typo in account model - `frozen` -> `froze`

staging
multiple creatures 2019-07-20 08:17:16 -05:00
parent c864465e71
commit 243cbb2861
1 changed files with 2 additions and 2 deletions

View File

@ -173,8 +173,8 @@ class Account < ApplicationRecord
moved_to_account_id.present?
end
def frozen?
local? ? (self&.user.nil? ? true : user.disabled?) : frozen
def froze?
local? ? (self&.user.nil? ? true : user.disabled?) : froze
end
def bot?