Update CustomQuoter.plugin.js

This commit is contained in:
Mirco Wittrien 2020-12-05 18:39:06 +01:00
parent 7a589037d4
commit 84f6ac4588
1 changed files with 1 additions and 2 deletions

View File

@ -427,8 +427,7 @@ module.exports = (_ => {
.replace("$month", settings.forceZeros && month < 10 ? "0" + month : month)
.replace("$year", timestamp.getFullYear())
.replace("$quote", quotedLines || "")
.replace("$rawQuote", unquotedLines.join("\n") || "")
.replace(/\$/g, "$$$$");
.replace("$rawQuote", unquotedLines.join("\n") || "");
}
addLeadingZeros (timestring) {