summaryrefslogtreecommitdiff
path: root/tt-rss.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-08-01 14:18:05 +0100
committerAndrew Dolgov <[email protected]>2006-08-01 14:18:05 +0100
commit5c365f6055ffe61ddcc5f2e306499945e34ddf09 (patch)
tree328180214a4dcdc5f8aa9a1e4454f787a152faa6 /tt-rss.js
parent826cdd263a925481616a0556d7fd2d003159d66f (diff)
fix various cat-related bugs
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 ec356e0ba..8e988ff26 100644
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -207,7 +207,7 @@ function updateFeedList(silent, fetch) {
query_str = query_str + "&tags=1";
}
- if (getActiveFeedId() != undefined) {
+ if (getActiveFeedId() && !activeFeedIsCat()) {
query_str = query_str + "&actid=" + getActiveFeedId();
}
@@ -447,7 +447,7 @@ function quickMenuGo(opid) {
if (opid == "qmcRemoveFeed") {
var actid = getActiveFeedId();
- if (actid == undefined) {
+ if (!actid || activeFeedIsCat()) {
alert("Please select some feed first.");
return;
}