Fix space after quote
This commit is contained in:
parent
7ec7b1c360
commit
c0ba44c88b
1 changed files with 1 additions and 1 deletions
2
index.js
2
index.js
|
@ -128,7 +128,7 @@ function pageUpdate() {
|
||||||
}
|
}
|
||||||
addedHTML += ' '
|
addedHTML += ' '
|
||||||
}
|
}
|
||||||
addedHTML.trimEnd()
|
addedHTML = addedHTML.trim()
|
||||||
addedHTML += `"</span>`
|
addedHTML += `"</span>`
|
||||||
}
|
}
|
||||||
addedHTML += ` - ${lanyardData.discord_user.display_name} ${new Date(Date.now()).getFullYear()}</em></p>`
|
addedHTML += ` - ${lanyardData.discord_user.display_name} ${new Date(Date.now()).getFullYear()}</em></p>`
|
||||||
|
|
Loading…
Reference in a new issue