From: Michael Tremer Date: Sun, 20 Apr 2025 14:18:00 +0000 (+0000) Subject: JS: Decode log messages from base64 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9623824ab661b73fa61588e2e05d138a4257dea8;p=pbs.git JS: Decode log messages from base64 Signed-off-by: Michael Tremer --- diff --git a/src/static/js/pbs.js b/src/static/js/pbs.js index 0c5720ee..45583f4d 100644 --- a/src/static/js/pbs.js +++ b/src/static/js/pbs.js @@ -282,7 +282,7 @@ document.querySelectorAll(".jobs-log-stream").forEach((log) => { line.classList.add(data.level); // Set the content - line.textContent = data.message; + line.textContent = atob(data.message); // Append it to the log window lines.appendChild(line);