mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 16:45:55 +00:00
fix catching up for grouped feeds
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user