Skip to content

Commit e100611

Browse files
committed
Merge pull request #15 from pipedrive/strict_mode_scope_fix
strict_mode scope bugfix
2 parents dad2946 + 87b103c commit e100611

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/Pipedrive.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,8 +166,8 @@ exports.Client = function(apiToken, options) {
166166
options = { strictMode: false };
167167
}
168168

169-
var that = this,
170-
strict = !!options.strictMode;
169+
var that = this;
170+
strict = !!options.strictMode;
171171

172172
var listener = new Channel(apiToken);
173173

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pipedrive",
3-
"version": "2.0.1",
3+
"version": "2.0.2",
44
"description": "Pipedrive REST client for NodeJS",
55
"keywords": [
66
"pipedrive",

0 commit comments

Comments
 (0)