diff --git a/lib/Service/DefaultBoardService.php b/lib/Service/DefaultBoardService.php index a9f31d0ac..5698994d6 100644 --- a/lib/Service/DefaultBoardService.php +++ b/lib/Service/DefaultBoardService.php @@ -62,9 +62,8 @@ class DefaultBoardService { */ public function checkFirstRun($userId): bool { $firstRun = $this->config->getUserValue($userId, Application::APP_ID, 'firstRun', 'yes'); - $userBoards = $this->boardMapper->findAllByUser($userId); - if ($firstRun === 'yes' && count($userBoards) === 0) { + if ($firstRun === 'yes') { try { $this->config->setUserValue($userId, Application::APP_ID, 'firstRun', 'no'); } catch (PreConditionNotMetException $e) {