From 0ffedaad514f2c3b5d48a13ba1627084b9a92802 Mon Sep 17 00:00:00 2001 From: KubaPro010 Date: Fri, 24 Apr 2026 22:29:49 +0200 Subject: [PATCH] mark unofficial on q --- modules/web/web.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/web/web.js b/modules/web/web.js index 121b41a..bcffa4f 100644 --- a/modules/web/web.js +++ b/modules/web/web.js @@ -227,7 +227,7 @@ function renderQueue() { ul.innerHTML = ""; queue.forEach(path => { const li = document.createElement("li"); - li.textContent = path.replace(basePath, "").slice(1); + li.textContent = path.replace(basePath, "").replace("!", "(unofficial) ").slice(1); if (skipCountToRender > 0) { li.style.textDecoration = "line-through"; skipCountToRender--;