mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-14 17:55:55 +00:00
add viewfeed_offline(); misc fixes
This commit is contained in:
12
feedlist.js
12
feedlist.js
@@ -129,9 +129,21 @@ function viewNextFeedPage() {
|
||||
}
|
||||
}
|
||||
|
||||
function viewfeed_offline(feed, subop, is_cat, subop_param, skip_history, offset) {
|
||||
try {
|
||||
|
||||
|
||||
} catch (e) {
|
||||
exception_error("viewfeed_offline", e);
|
||||
}
|
||||
}
|
||||
|
||||
function viewfeed(feed, subop, is_cat, subop_param, skip_history, offset) {
|
||||
try {
|
||||
|
||||
if (offline_mode) return viewfeed_offline(feed, subop, is_cat, subop_param,
|
||||
skip_history, offset);
|
||||
|
||||
// if (!offset) page_offset = 0;
|
||||
|
||||
last_requested_article = 0;
|
||||
|
||||
Reference in New Issue
Block a user