Skip to content
This repository has been archived by the owner on Dec 12, 2021. It is now read-only.

Commit

Permalink
Merge branch 'master' of github.com:ryanb/railscasts-episodes
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanb committed Mar 29, 2012
2 parents 2c98915 + 69a220e commit a459674
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion episode-241/blog/app/models/user.rb
Expand Up @@ -3,7 +3,7 @@ def self.create_with_omniauth(auth)
create! do |user|
user.provider = auth["provider"]
user.uid = auth["uid"]
user.name = auth["user_info"]["name"]
user.name = auth["info"]["name"]
end
end
end

0 comments on commit a459674

Please sign in to comment.