1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-14 12:05:56 +00:00

fix all_counters_callback in catless mode

This commit is contained in:
Andrew Dolgov
2005-12-13 10:37:22 +01:00
parent c3f348c2fa
commit 0813387b1a

View File

@@ -369,7 +369,9 @@ function all_counters_callback() {
if (t == "category") { if (t == "category") {
var catctr = f_document.getElementById("FCATCTR-" + id); var catctr = f_document.getElementById("FCATCTR-" + id);
catctr.innerHTML = "(" + ctr + " unread)"; if (catctr) {
catctr.innerHTML = "(" + ctr + " unread)";
}
continue; continue;
} }