Skip to content

Commit

Permalink
related fix for issue heroku#2
Browse files Browse the repository at this point in the history
the app function had the same invalid callback signature
  • Loading branch information
machunter committed Jul 10, 2012
1 parent dd505a9 commit a3f1b01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ 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);
});
}
Expand Down

0 comments on commit a3f1b01

Please sign in to comment.