From f13ab7323f9036091c59e6623b1332fca4f6a9e8 Mon Sep 17 00:00:00 2001 From: Mikael Nordfeldth Date: Mon, 10 Jul 2017 14:12:47 +0200 Subject: [PATCH] Misplaced ending parenthesis --- classes/NotificationStream.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/NotificationStream.php b/classes/NotificationStream.php index 15e399f..6f0b449 100644 --- a/classes/NotificationStream.php +++ b/classes/NotificationStream.php @@ -114,7 +114,7 @@ class NotificationStream $all = array_merge($all, $notifications); - if (count($notifications < count($ids))) { + if (count($notifications) < count($ids)) { $offset += $limit; $limit -= count($notifications); }