Skip to content

Commit

Permalink
Merge pull request #469 from leibale/patch-1
Browse files Browse the repository at this point in the history
fix #466
  • Loading branch information
stephenplusplus committed Mar 30, 2015
2 parents eb3a63b + 69e7ab5 commit 13ad9dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/pubsub/subscription.js
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ Subscription.prototype.ack = function(ids, callback) {
ackIds: ids
};
var path = this.name + ':acknowledge';
this.makeReq_('POST', path, null, body, callback);
this.makeReq_('POST', path, null, body, callback || util.noop);
};

/**
Expand Down

0 comments on commit 13ad9dc

Please sign in to comment.