Skip to content

Commit addf5e4

Browse files
committed
Fix issue steves#105 - issueLink returns 201 Created, not 200
1 parent 6429788 commit addf5e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/jira.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -593,7 +593,7 @@ var JiraApi = exports.JiraApi = function(protocol, host, port, username, passwor
593593
return;
594594
}
595595

596-
if (response.statusCode !== 200) {
596+
if (response.statusCode !== 201) {
597597
callback(response.statusCode + ': Unable to connect to JIRA during issueLink.');
598598
return;
599599
}

0 commit comments

Comments
 (0)