mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-12 22:35:55 +00:00
Fix 'view_mode' default in API#getHeadlines()
This commit is contained in:
@@ -201,7 +201,7 @@ class API extends Handler {
|
||||
$show_excerpt = self::_param_to_bool($_REQUEST["show_excerpt"] ?? false);
|
||||
$show_content = self::_param_to_bool($_REQUEST["show_content"] ?? false);
|
||||
/* all_articles, unread, adaptive, marked, updated */
|
||||
$view_mode = clean($_REQUEST["view_mode"] ?? false);
|
||||
$view_mode = clean($_REQUEST["view_mode"] ?? null);
|
||||
$include_attachments = self::_param_to_bool($_REQUEST["include_attachments"] ?? false);
|
||||
$since_id = (int)clean($_REQUEST["since_id"] ?? 0);
|
||||
$include_nested = self::_param_to_bool($_REQUEST["include_nested"] ?? false);
|
||||
|
||||
Reference in New Issue
Block a user