mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
Fix unnecessary SQL query performed on unauthenticated requests (#11179)
This commit is contained in:
parent
8d57795608
commit
6836587117
@ -91,11 +91,15 @@ class ApplicationController < ActionController::Base
|
|||||||
end
|
end
|
||||||
|
|
||||||
def current_account
|
def current_account
|
||||||
@current_account ||= current_user.try(:account)
|
return @current_account if defined?(@current_account)
|
||||||
|
|
||||||
|
@current_account = current_user&.account
|
||||||
end
|
end
|
||||||
|
|
||||||
def current_session
|
def current_session
|
||||||
@current_session ||= SessionActivation.find_by(session_id: cookies.signed['_session_id'])
|
return @current_session if defined?(@current_session)
|
||||||
|
|
||||||
|
@current_session = SessionActivation.find_by(session_id: cookies.signed['_session_id']) if cookies.signed['_session_id'].present?
|
||||||
end
|
end
|
||||||
|
|
||||||
def current_theme
|
def current_theme
|
||||||
|
Loading…
Reference in New Issue
Block a user