mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 17:15:55 +00:00
queryfeedheadlines: remove disable_offsets hack
This commit is contained in:
@@ -686,8 +686,7 @@ class API extends Handler {
|
||||
"offset" => $offset,
|
||||
"since_id" => $since_id,
|
||||
"include_children" => $include_nested,
|
||||
"check_first_id" => $check_first_id,
|
||||
"api_request" => true
|
||||
"check_first_id" => $check_first_id
|
||||
);
|
||||
|
||||
$qfh_ret = queryFeedHeadlines($params);
|
||||
|
||||
@@ -465,7 +465,6 @@
|
||||
$override_vfeed = isset($params["override_vfeed"]) ? $params["override_vfeed"] : false;
|
||||
$start_ts = isset($params["start_ts"]) ? $params["start_ts"] : false;
|
||||
$check_first_id = isset($params["check_first_id"]) ? $params["check_first_id"] : false;
|
||||
$api_request = isset($params["api_request"]) ? $params["api_request"] : false;
|
||||
|
||||
$ext_tables_part = "";
|
||||
$query_strategy_part = "";
|
||||
@@ -494,7 +493,6 @@
|
||||
}
|
||||
|
||||
$view_query_part = "";
|
||||
$disable_offsets = false;
|
||||
|
||||
if ($view_mode == "adaptive") {
|
||||
if ($search) {
|
||||
@@ -508,7 +506,6 @@
|
||||
|
||||
if ($unread > 0) {
|
||||
$view_query_part = " unread = true AND ";
|
||||
$disable_offsets = !$api_request && get_pref("CDM_AUTO_CATCHUP") && get_pref("CDM_EXPANDED");
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -527,7 +524,6 @@
|
||||
|
||||
if ($view_mode == "unread" && $feed != -6) {
|
||||
$view_query_part = " unread = true AND ";
|
||||
$disable_offsets = !$api_request && get_pref("CDM_AUTO_CATCHUP") && get_pref("CDM_EXPANDED");
|
||||
}
|
||||
|
||||
if ($limit > 0) {
|
||||
@@ -735,7 +731,7 @@
|
||||
$sanity_interval_qpart = "date_entered >= DATE_SUB(NOW(), INTERVAL 1 hour) AND";
|
||||
}
|
||||
|
||||
if (!$search && !$disable_offsets) {
|
||||
if (!$search) {
|
||||
// if previous topmost article id changed that means our current pagination is no longer valid
|
||||
$query = "SELECT DISTINCT
|
||||
ttrss_feeds.title,
|
||||
@@ -775,10 +771,6 @@
|
||||
}
|
||||
}
|
||||
|
||||
if ($disable_offsets) {
|
||||
$offset_query_part = "";
|
||||
}
|
||||
|
||||
$query = "SELECT DISTINCT
|
||||
date_entered,
|
||||
guid,
|
||||
|
||||
Reference in New Issue
Block a user