Skip to content

Commit

Permalink
strict_mode scope bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
kungla committed Sep 28, 2015
1 parent dad2946 commit 87b103c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lib/Pipedrive.js
Original file line number Diff line number Diff line change
Expand Up @@ -166,8 +166,8 @@ exports.Client = function(apiToken, options) {
options = { strictMode: false };
}

var that = this,
strict = !!options.strictMode;
var that = this;
strict = !!options.strictMode;

var listener = new Channel(apiToken);

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pipedrive",
"version": "2.0.1",
"version": "2.0.2",
"description": "Pipedrive REST client for NodeJS",
"keywords": [
"pipedrive",
Expand Down

0 comments on commit 87b103c

Please sign in to comment.