mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 10:33:51 +08:00
fix for nil session in mobile_detection.rb
This commit is contained in:
parent
cdce117941
commit
fc9c6c8d18
|
@ -10,7 +10,7 @@ module MobileDetection
|
|||
|
||||
session[:mobile_view] = params[:mobile_view] if params && params.has_key?(:mobile_view)
|
||||
|
||||
if session[:mobile_view]
|
||||
if session && session[:mobile_view]
|
||||
session[:mobile_view] == '1'
|
||||
else
|
||||
mobile_device?(user_agent)
|
||||
|
|
Loading…
Reference in New Issue
Block a user