Ensure single user is a local user (fixes #8154) (#8157)

th-downstream
ThibG 6 years ago committed by Eugen Rochko
parent 92ae613358
commit 1d3b39e106

@ -58,7 +58,7 @@ class HomeController < ApplicationController
if request.path.start_with?('/web')
new_user_session_path
elsif single_user_mode?
short_account_path(Account.first)
short_account_path(Account.local.where(suspended: false).first)
else
about_path
end

Loading…
Cancel
Save