diff options
author | (quasar) nebula <towerofnix@gmail.com> | 2021-04-05 20:03:34 -0300 |
---|---|---|
committer | (quasar) nebula <towerofnix@gmail.com> | 2021-04-05 20:03:34 -0300 |
commit | 458aea1a74d0e8e5b8ed39005b534ecf232471c2 (patch) | |
tree | e6a02d6ae1f70d080e1bdd3aa3a482a36c15bc3b | |
parent | 6a6d9a1cff905676ae2335b3aaba1dee47ad386c (diff) |
i fixed the bug :)
-rwxr-xr-x | upd8.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/upd8.js b/upd8.js index 36873665..3041b504 100755 --- a/upd8.js +++ b/upd8.js @@ -2852,7 +2852,7 @@ function getRevealStringFromWarnings(warnings, {strings}) { function getRevealStringFromTags(tags, {strings}) { return tags && tags.some(tag => tag.isCW) && ( - getRevealStringFromWarnings(strings.list.unit(tags.filter(tag => tag.isCW).map(tag => tag.name).join(', ')), {strings})); + getRevealStringFromWarnings(strings.list.unit(tags.filter(tag => tag.isCW).map(tag => tag.name)), {strings})); } function generateCoverLink({ |