diff --git a/lib/Service/BoardService.php b/lib/Service/BoardService.php index b88111add..65096f983 100644 --- a/lib/Service/BoardService.php +++ b/lib/Service/BoardService.php @@ -621,7 +621,9 @@ class BoardService { if ($fullDetails) { $this->enrichWithStacks($board); - $this->enrichWithLabels($board); + if ($board->getLabels() === null) { + $this->enrichWithLabels($board); + } $this->enrichWithUsers($board); $this->enrichWithBoardSettings($board); $this->enrichWithActiveSessions($board);