1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-20 11:16:36 +02:00

cleanup title even if refetch_callback failed

This commit is contained in:
Andrew Dolgov 2006-02-11 05:34:15 +01:00
parent f5de0d8da5
commit e2cb4c6d7a

View File

@ -110,6 +110,7 @@ function refetch_callback() {
if (!reply) {
notify("refetch_callback: backend did not return expected XML object");
updateTitle("");
return;
}
@ -127,6 +128,7 @@ function refetch_callback() {
notify("All feeds updated.");
} catch (e) {
exception_error("refetch_callback", e);
updateTitle("");
}
}
}