1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-02-10 16:01:33 +00:00

fix catching up for grouped feeds

This commit is contained in:
Andrew Dolgov
2015-09-03 16:41:04 +03:00
parent c7ce438e7b
commit 791877c39d
2 changed files with 6 additions and 3 deletions
+3 -3
View File
@@ -146,11 +146,11 @@ function catchupAllFeeds() {
}
}
function viewCurrentFeed() {
console.log("viewCurrentFeed");
function viewCurrentFeed(method) {
console.log("viewCurrentFeed: " + method);
if (getActiveFeedId() != undefined) {
viewfeed({feed: getActiveFeedId(), is_cat: activeFeedIsCat()});
viewfeed({feed: getActiveFeedId(), is_cat: activeFeedIsCat(), method: method});
}
return false; // block unneeded form submits
}