mirror of
https://github.com/omniauth/omniauth.git
synced 2022-11-09 12:31:49 -05:00
fix tsina strategy bug
This commit is contained in:
parent
7861fe3f8c
commit
2745fa6f09
1 changed files with 2 additions and 2 deletions
|
@ -68,8 +68,8 @@ module OmniAuth
|
|||
|
||||
# MonkeyPath to symbolize tina parameters
|
||||
def callback_phase
|
||||
session[:oauth].symbolize_keys!
|
||||
session[:oauth][name.to_sym].symbolize_keys! if session[:oauth][name.to_sym]
|
||||
session[:oauth].stringify_keys!
|
||||
session[:oauth][name.to_s].stringify_keys! if session[:oauth][name.to_s]
|
||||
super
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue