diff options
author | (quasar) nebula <towerofnix@gmail.com> | 2021-03-12 16:03:17 -0400 |
---|---|---|
committer | (quasar) nebula <towerofnix@gmail.com> | 2021-03-12 16:03:17 -0400 |
commit | 8b32886b0f5dedd63eb10592ce0ef6d1233689c5 (patch) | |
tree | ea602a75a99ef53700518aae826442e369a4a7ad | |
parent | 4ae47f11a7c2ab3b913d6298f24ef416e7f1d47f (diff) |
fix double-transforming track commentary, oops
-rwxr-xr-x | upd8.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/upd8.js b/upd8.js index 49a9a397..2d08b9c7 100755 --- a/upd8.js +++ b/upd8.js @@ -2946,7 +2946,7 @@ function writeTrackPage(track) { ${hasCommentary && fixWS` <p>${strings('releaseInfo.artistCommentary')}</p> <blockquote> - ${transformMultiline(generateCommentary({strings, to}), {strings, to})} + ${generateCommentary({strings, to})} </blockquote> `} ` |