From 10b53832bd1ba18a6eec26f8c23a6cb78f7b7fc8 Mon Sep 17 00:00:00 2001 From: David Date: Wed, 15 Oct 2014 14:34:44 -0700 Subject: [PATCH] ID to UID. --- .gitignore | 1 + www/js/firefeed.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 1502792..e5eadae 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ *.iml *~ .bundle +node_modules \ No newline at end of file diff --git a/www/js/firefeed.js b/www/js/firefeed.js index 6ec91a6..997b0de 100644 --- a/www/js/firefeed.js +++ b/www/js/firefeed.js @@ -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 = '';