Skip to content

Commit d3998b6

Browse files
committed
fix syntax error in UserStatusMapper::findAllRecent
Signed-off-by: Julien Veyssier <[email protected]>
1 parent 581d91c commit d3998b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/user_status/lib/Db/UserStatusMapper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ public function findAllRecent(?int $limit = null, ?int $offset = null): array {
8484
$qb->expr()->isNotNull('custom_message'),
8585
),
8686
$qb->expr()->notLike('user_id', '_%')
87-
);
87+
));
8888

8989
if ($limit !== null) {
9090
$qb->setMaxResults($limit);

0 commit comments

Comments
 (0)