diff --git a/extension/changelog.json b/extension/changelog.json index 43465ed65..c90b5827f 100644 --- a/extension/changelog.json +++ b/extension/changelog.json @@ -3,7 +3,7 @@ "version": { "major": 6, "minor": 23, "build": 0 }, "title": "Beta", "date": false, - "logs": { "features": [], "fixes": [], "changes": [], "removed": [] } + "logs": { "features": [], "fixes": [{ "message": "Fix incorrect times in popup icons.", "contributor": "TheFoxMan" }], "changes": [], "removed": [] } }, { "version": { "major": 6, "minor": 22, "build": 0 }, diff --git a/extension/pages/popup/popup.js b/extension/pages/popup/popup.js index 070f05101..116fd2511 100644 --- a/extension/pages/popup/popup.js +++ b/extension/pages/popup/popup.js @@ -299,7 +299,9 @@ async function setupDashboard() { iconHTML = text + " - " + - ` + ` ${time} `; } else iconHTML = iconText; diff --git a/extension/scripts/background.js b/extension/scripts/background.js index 8c36025ab..90813d0c6 100644 --- a/extension/scripts/background.js +++ b/extension/scripts/background.js @@ -331,7 +331,7 @@ async function updateUserdata() { if (updateEssential) { selections.push("profile", "timestamp"); - for (const selection of ["bars", "cooldowns", "travel", "newmessages", "money", "refills"]) { + for (const selection of ["bars", "cooldowns", "travel", "newmessages", "money", "refills", "icons"]) { if (!settings.apiUsage.user[selection]) continue; selections.push(selection); @@ -352,7 +352,6 @@ async function updateUserdata() { "merits", "perks", "networth", - "icons", "ammo", "honors", "medals",