Skip to content

Commit

Permalink
Merge pull request #10 from machunter/master
Browse files Browse the repository at this point in the history
addressing issue #2
  • Loading branch information
ddollar committed Jul 10, 2012
2 parents 2b51697 + a3f1b01 commit 16b0662
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,14 +96,14 @@ var FaceplateSession = function(plate, signed_request) {
}

this.app = function(cb) {
self.get('/' + self.plate.app_id, function(app) {
self.get('/' + self.plate.app_id, function(err, app) {
cb(app);
});
}

this.me = function(cb) {
if (self.token) {
self.get('/me', function(me) {
self.get('/me', function(err, me) {
cb(me);
});
} else {
Expand Down

0 comments on commit 16b0662

Please sign in to comment.