aboutsummaryrefslogtreecommitdiff
path: root/p/api/fever.php
diff options
context:
space:
mode:
authorGravatar Felix Bühler <Stunkymonkey@users.noreply.github.com> 2021-12-12 13:03:18 +0100
committerGravatar GitHub <noreply@github.com> 2021-12-12 13:03:18 +0100
commit1ac3effce53e39d89272dfc95b0c68fcaa122dfb (patch)
treebf564a41b45857365522f617cb78255894fc3e47 /p/api/fever.php
parentf0ca1288d20828f8b88a9d7f60f66b4b3a74f24b (diff)
fever: fix warning of unset array key (#4056)
Diffstat (limited to 'p/api/fever.php')
-rw-r--r--p/api/fever.php2
1 files changed, 1 insertions, 1 deletions
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)) {