From d835015942f106bcd9481c1eead15301689138e0 Mon Sep 17 00:00:00 2001 From: grnd-alt Date: Wed, 18 Mar 2026 14:25:45 +0100 Subject: [PATCH] fix: call findBoardId with int Signed-off-by: grnd-alt --- lib/Sharing/DeckShareProvider.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Sharing/DeckShareProvider.php b/lib/Sharing/DeckShareProvider.php index 802569f56..84c121c0a 100644 --- a/lib/Sharing/DeckShareProvider.php +++ b/lib/Sharing/DeckShareProvider.php @@ -1024,7 +1024,7 @@ public function getAccessList($nodes, $currentAccess) { while ($row = $cursor->fetch()) { $type = (int)$row['share_type']; if ($type === IShare::TYPE_DECK) { - $cardId = $row['share_with']; + $cardId = (int)$row['share_with']; $boardId = $this->cardMapper->findBoardId($cardId); if ($boardId === null) { continue;