From 5af23eba17ec5e028eb3738fb5346ab15d9aa056 Mon Sep 17 00:00:00 2001 From: Maxence Lange Date: Wed, 10 Sep 2025 15:42:52 -0100 Subject: [PATCH] fix: feed array Signed-off-by: Maxence Lange --- lib/Command/CirclesList.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Command/CirclesList.php b/lib/Command/CirclesList.php index f5acf22da..e91703539 100644 --- a/lib/Command/CirclesList.php +++ b/lib/Command/CirclesList.php @@ -229,7 +229,7 @@ private function displayCircles(array $circles): void { $rows = []; foreach ($circles as $circle) { $owner = $circle->getOwner(); - $rows = [ + $rows[] = [ $circle->getSingleId(), $this->cut(($displayName ? $circle->getDisplayName() : $circle->getName()), 40), json_encode(Circle::getCircleFlags($circle, $display)),