1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-15 03:45:56 +00:00

UNDO: display current feed in title (only in daemon mode for now)

This commit is contained in:
Andrew Dolgov
2006-02-12 09:33:07 +01:00
parent dcca5d13a0
commit 5b857464f4
2 changed files with 2 additions and 3 deletions

View File

@@ -342,7 +342,7 @@ function localHotkeyHandler(keycode) {
function updateTitle(s) {
var tmp = "Tiny Tiny RSS";
if (s != undefined) {
if (s && s.length > 0) {
current_subtitle = s;
}
@@ -350,7 +350,7 @@ function updateTitle(s) {
tmp = tmp + " (" + global_unread + ")";
}
if (current_subtitle) {
if (s) {
tmp = tmp + " - " + current_subtitle;
}