Fix rsync page: add missing _esc helper that broke all card rendering

This commit is contained in:
Gmer4Lfe
2026-06-06 15:55:31 -04:00
parent 4bb6bbf009
commit 04cd15a22f
+4
View File
@@ -731,6 +731,10 @@ function _bwSection(data) {
}
// ── Sync log card ─────────────────────────────────────────────────────────────
function _esc(s) {
return (s||'').replace(/&/g,'&amp;').replace(/</g,'&lt;').replace(/>/g,'&gt;').replace(/"/g,'&quot;');
}
let _liveTicker = null;
let _fastPollTimer = null;