1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-16 00:25:56 +00:00

fix various cat-related bugs

This commit is contained in:
Andrew Dolgov
2006-08-01 14:18:05 +01:00
parent 826cdd263a
commit 5c365f6055
5 changed files with 8 additions and 8 deletions

View File

@@ -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;
}