From 1ac3effce53e39d89272dfc95b0c68fcaa122dfb Mon Sep 17 00:00:00 2001 From: Felix Bühler Date: Sun, 12 Dec 2021 13:03:18 +0100 Subject: fever: fix warning of unset array key (#4056) --- p/api/fever.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'p/api/fever.php') diff --git a/p/api/fever.php b/p/api/fever.php index 8d1ba169f..1bc5aa8df 100644 --- a/p/api/fever.php +++ b/p/api/fever.php @@ -508,7 +508,7 @@ class FeverAPI } } elseif (isset($_REQUEST['with_ids'])) { $entry_ids = explode(',', $_REQUEST['with_ids']); - } else { + } elseif (isset($_REQUEST['since_id'])) { // use the since_id argument to request the next $item_limit items $since_id = '' . $_REQUEST['since_id']; if (!ctype_digit($since_id)) { -- cgit v1.2.3