summaryrefslogtreecommitdiff
path: root/tt-rss.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-02-12 09:36:20 +0100
committerAndrew Dolgov <[email protected]>2006-02-12 09:36:20 +0100
commit5a494a0bc9702c9340af4622253014fd8e8a9aa0 (patch)
treebc66a5305bcdecfa6797f1da9effa7cc600303fc /tt-rss.js
parent5b857464f4628ec97ae52f77effa8618bdd1ecd6 (diff)
disable previous patch
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 961c6df49..1e5573f90 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 && s.length > 0) {
+ if (s != undefined) {
current_subtitle = s;
}
@@ -350,7 +350,7 @@ function updateTitle(s) {
tmp = tmp + " (" + global_unread + ")";
}
- if (s) {
+ if (current_subtitle) {
tmp = tmp + " - " + current_subtitle;
}