omniauth-raven 0.1.3 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/omniauth/raven/version.rb +1 -1
- data/lib/omniauth/strategies/raven.rb +1 -1
- metadata +1 -1
|
@@ -67,7 +67,7 @@ module OmniAuth
|
|
|
67
67
|
return fail!("time_skew") unless skew.abs < options[:raven_opt][:max_skew]
|
|
68
68
|
|
|
69
69
|
#Optionally check that interaction with the user took place
|
|
70
|
-
return fail!(:invalid_response, Exception.new("No raven interaction took place, but it was requested") ) if ( iact == 'yes' && auth == "" )
|
|
70
|
+
return fail!(:invalid_response, Exception.new("No raven interaction took place, but it was requested") ) if ( options[:raven_opt][:iact] == 'yes' && auth == "" )
|
|
71
71
|
|
|
72
72
|
#Optionally check that this response matches a request
|
|
73
73
|
if @match_response_and_request
|