mirror of
https://github.com/ENSL/ensl.org.git
synced 2025-01-13 21:31:28 +00:00
Fix exception on missing user
This commit is contained in:
parent
3b616698a6
commit
3dc2de0fd6
1 changed files with 2 additions and 1 deletions
|
@ -15,6 +15,7 @@ class ApplicationController < ActionController::Base
|
|||
def cuser
|
||||
begin
|
||||
@cuser ||= User.find(session[:user])
|
||||
# Don't error if the user is missing.
|
||||
rescue
|
||||
session[:user] = nil
|
||||
@cuser = nil
|
||||
|
|
Loading…
Reference in a new issue