1
0
Fork 0
mirror of https://github.com/omniauth/omniauth.git synced 2022-11-09 12:31:49 -05:00

Merge pull request #364 from kevinwmerritt/1.0-beta

oa-identity is passing provider name to hash as a symbol instead of a string
This commit is contained in:
Erik Michaels-Ober 2011-09-03 09:48:01 -07:00
commit 6748a0c905

View file

@ -70,7 +70,7 @@ module OmniAuth
def auth_hash
{
'provider' => name,
'provider' => name.to_s,
'uid' => identity.uid,
'user_info' => identity.user_info
}