Skip to content

Commit 60bd543

Browse files
authored
Merge pull request #91 from citricsquid/patch-1
Fixes unnecessary explicit comment type reference
2 parents 61c762f + 61324c7 commit 60bd543

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bot.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ function replyToMessages() {
136136
.filter(message => message['subject'].match(/refresh (\w+)/i))
137137
.forEach(message => {
138138
const commentId = message['subject'].match(/refresh (\w+)/i)[1];
139-
const comment = network.getComment('t1_' + commentId);
139+
const comment = network.getComment(commentId);
140140

141141
if (! comment) {
142142
return;

0 commit comments

Comments
 (0)