Skip to content

Commit

Permalink
Merge pull request googlearchive#35 from firebase/id-uid
Browse files Browse the repository at this point in the history
ID to UID.
  • Loading branch information
asciimike committed Oct 15, 2014
2 parents 3b2c4c1 + 10b5383 commit d76d269
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
*.iml
*~
.bundle
node_modules
2 changes: 1 addition & 1 deletion www/js/firefeed.js
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ Firefeed.prototype.onLogin = function(user) {
var displayName = user.facebook.displayName.split(' ');
user.first_name = displayName[0];
user.last_name = displayName[displayName.length - 1];
user.id = user.facebook.id;
user.id = user.uid;
user.name = user.facebook.displayName;
user.location = '';
user.bio = '';
Expand Down

0 comments on commit d76d269

Please sign in to comment.