Skip to content

Commit 587154c

Browse files
committed
Merge pull request #67 from ndamnjanovic/master
Call 'doRequest' method instead of calling Node's 'request' method.
2 parents 3d757d4 + af49ee0 commit 587154c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/jira.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1723,7 +1723,7 @@ var JiraApi = exports.JiraApi = function(protocol, host, port, username, passwor
17231723
json: true
17241724
};
17251725

1726-
this.request(options, function(error, response, body) {
1726+
this.doRequest(options, function(error, response, body) {
17271727

17281728
if (error) {
17291729
callback(error, null);

0 commit comments

Comments
 (0)