Skip to content

Commit a8bf6b1

Browse files
committed
Fix missing ) in GitHub Releases
1 parent b94be41 commit a8bf6b1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

‎main.js‎

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2019,7 +2019,8 @@ function toDisplayPullRequestList (build, isGitHubRelease) {
20192019
text += ' (';
20202020
text += isGitHubRelease ? '`' : '<code>';
20212021
text += [pullRequest.github.additions, -pullRequest.github.deletions].filter((item) => item !== 0).map((item) => item > 0 ? '+' + item : item.toString());
2022-
text += isGitHubRelease ? '`' : '</code>)'
2022+
text += isGitHubRelease ? '`' : '</code>'
2023+
text += ')';
20232024
}
20242025
if (!nextPullRequest || !nextPullRequest.github || nextPullRequest.github.name !== pullRequest.github.name) {
20252026
if (isGitHubRelease) {

0 commit comments

Comments
 (0)