Now it'll work, I'm just dumb
This commit is contained in:
parent
2a0ee52654
commit
fea79cbefc
1 changed files with 2 additions and 2 deletions
|
@ -153,9 +153,9 @@ func processIssueCommentEvent(event *github.IssueCommentEvent) {
|
|||
|
||||
return
|
||||
} else {
|
||||
commentText := "Votes: (#{reactionCount}) Needed: (#{reactionRemainingCount})"
|
||||
commentText := "Votes: (#{reactionCount})/(#{reactionCountGoal})"
|
||||
commentText = strings.Replace(commentText, "(#{reactionCount})", strconv.Itoa(reactionCount), 1)
|
||||
commentText = strings.Replace(commentText, "(#{reactionRemainingCount})", strconv.Itoa(reactionCountGoal-reactionCount), 1)
|
||||
commentText = strings.Replace(commentText, "(#{reactionCountGoal})", strconv.Itoa(reactionCountGoal), 1)
|
||||
|
||||
// Respond with a comment
|
||||
comment := &github.IssueComment{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue