Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/github.ts
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,8 @@ export function loadIssueByTerm(term: string) {
}
}
// tslint:disable-next-line:no-console
console.warn(`Issue search results do not contain an issue with title matching "${term}". Using first result.`);
return results.items[0];
console.warn(`Issue search results do not contain an issue with title matching "${term}".`);
return null;
});
}

Expand Down