catchupPage() now removes UPD images like it should
This commit is contained in:
parent
c2c0c35d1d
commit
bf66b95bf2
1 changed files with 5 additions and 0 deletions
|
@ -225,6 +225,11 @@ function catchupPage(feed) {
|
|||
rows.push(row_id);
|
||||
content.rows[i].className = content.rows[i].className.replace("Unread", "");
|
||||
}
|
||||
|
||||
var upd_img_pic = document.getElementById("FUPDPIC-" + row_id);
|
||||
if (upd_img_pic) {
|
||||
upd_img_pic.innerHTML = "";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue