From 8cabd6001eef594a66ca0dd920a766bc04419cef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Thu, 27 Jul 2023 20:36:25 +0200 Subject: [PATCH] fix: Avoid duplicate data on board export MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Julius Härtl --- lib/Command/UserExport.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Command/UserExport.php b/lib/Command/UserExport.php index b435e2ee5..7355cb880 100644 --- a/lib/Command/UserExport.php +++ b/lib/Command/UserExport.php @@ -69,7 +69,7 @@ class UserExport extends Command { $legacyFormat = $input->getOption('legacy-format'); $this->boardService->setUserId($userId); - $boards = $this->boardService->findAll(fullDetails: true); + $boards = $this->boardService->findAll(fullDetails: false); $data = []; foreach ($boards as $board) {