We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed08c1c commit cbe3081Copy full SHA for cbe3081
scripts/proposals.js
@@ -127,7 +127,7 @@ function getProposalFromIssue(issue) {
127
*/
128
function getDirective(directiveName, issue) {
129
const re = new RegExp(`^${directiveName}: (.+?)$`, "m");
130
- const found = issue.body.match(re);
+ const found = issue.body?.match(re);
131
return found? found[1]: null;
132
}
133
0 commit comments