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 0d2dcc5 commit ab589cdCopy full SHA for ab589cd
paperbot/package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "isocpp-mattermost-paperbot",
3
- "version": "2.0.0-rc.9",
+ "version": "2.0.1",
4
"description": "",
5
"main": "src/index.js",
6
"scripts": {
paperbot/src/index.js
@@ -550,7 +550,7 @@ class PaperBot {
550
this.stats.paper_requests_handled += 1;
551
552
const paper_request_regex = /(?:(C|E|LE?)WG|FS|SD|N|P|D|EDIT) ?\d+(R\d+)?/gi;
553
- const papers_requested = [...post.message.matchAll(paper_request_regex)].map(m => m[0]);
+ const papers_requested = [...post.message.matchAll(paper_request_regex)].map(m => m[1]);
554
this.handlePaperRequest(post, papers_requested, true);
555
}
556
0 commit comments