summaryrefslogtreecommitdiff
path: root/tt-rss.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-02-12 09:33:07 +0100
committerAndrew Dolgov <[email protected]>2006-02-12 09:33:07 +0100
commit5b857464f4628ec97ae52f77effa8618bdd1ecd6 (patch)
treefaf17946dc4cd7eb9dd431ced981c4d2a71772b9 /tt-rss.js
parentdcca5d13a0404ee3a7365cf4c5d55586559cb481 (diff)
UNDO: display current feed in title (only in daemon mode for now)
Diffstat (limited to 'tt-rss.js')
-rw-r--r--tt-rss.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/tt-rss.js b/tt-rss.js
index 1e5573f90..961c6df49 100644
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -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;
}