@ -37,11 +37,19 @@ const checkHasIssue = (options, issueNumber, callback) => options.github.issues.
owner : options.baseRepoOptions.owner ,
owner : options.baseRepoOptions.owner ,
repo : options.baseRepoOptions.reponame ,
repo : options.baseRepoOptions.reponame ,
} , ( getIssueErr , result ) = > {
} , ( getIssueErr , result ) = > {
if ( getIssueErr && getIssueErr . code !== httpNotFound ) {
if ( getIssueErr ) {
return callback ( getIssueErr ) ;
if ( getIssueErr . code !== httpNotFound ) {
return callback ( getIssueErr ) ;
}
return callback ( null , false ) ;
}
if ( ! result . number ) {
return callback ( ` Unable to get issue info for ${ options . baseRepoOptions . owner } / ${ options . baseRepoOptions . reponame } /# ${ issueNumber } : ${ JSON . stringify ( result ) } ` ) ;
}
}
if ( getIssueErr || result . number . toString ( ) !== issueNumber ) {
if ( result . number . toString ( ) !== issueNumber ) {
return callback ( null , false ) ;
return callback ( null , false ) ;
}
}