mirror of https://github.com/mastodon/mastodon
Change "Account.any?" to "Account.exists?" (#3217)
This commit is contained in:
parent
fbbd80b40b
commit
73e4468ff3
|
@ -61,7 +61,7 @@ class ApplicationController < ActionController::Base
|
||||||
end
|
end
|
||||||
|
|
||||||
def single_user_mode?
|
def single_user_mode?
|
||||||
@single_user_mode ||= Rails.configuration.x.single_user_mode && Account.any?
|
@single_user_mode ||= Rails.configuration.x.single_user_mode && Account.exists?
|
||||||
end
|
end
|
||||||
|
|
||||||
def current_account
|
def current_account
|
||||||
|
|
Loading…
Reference in New Issue