Fix empty weather text

This commit is contained in:
bingus_violet 2024-04-24 15:41:03 -05:00
parent ed33f4b7be
commit 1122d1fafc
2 changed files with 253 additions and 103 deletions

View file

@ -96,7 +96,9 @@ function converter(html, query) {
"LATEST_YOUTUBE": "filler",
"SPINCOUNT": globalSpins,
"UPTIME": timeFormatter((Date.now() - uptime) / 1000),
"RELOAD_COUNT": reloads
"RELOAD_COUNT": reloads,
"WEATHER_MODIFIER": "",
"WEATHER_TEXT": ""
}
var rpTable = Object.keys(replacers)
@ -108,6 +110,7 @@ function converter(html, query) {
var bodyHTML = html.substring(html.indexOf("<body>") + 6, html.lastIndexOf("</body>"))
var highTable = Object.keys(highlightedWords)
for (let index = 0; index < highTable.length; index++) {
var term = highTable[index];
var replacement = `<span style="color: ${highlightedWords[term]}">${term}</span>`