From dc10118d372d51a4dce5ab5d317b987230f3cbf4 Mon Sep 17 00:00:00 2001 From: Simon Schweissinger Date: Thu, 28 May 2026 11:07:56 +0200 Subject: [PATCH] Fix Bard/Link Blink cache type collision --- src/Fieldtypes/Bard.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Fieldtypes/Bard.php b/src/Fieldtypes/Bard.php index c7466482cfc..60b4ade37a5 100644 --- a/src/Fieldtypes/Bard.php +++ b/src/Fieldtypes/Bard.php @@ -595,7 +595,7 @@ public function preload() $linkCollections = Blink::once('routable-collection-handles-'.$site, function () use ($site) { return Collection::all()->reject(function ($collection) use ($site) { return is_null($collection->route($site)); - })->map->handle()->values(); + })->map->handle()->values()->all(); }); }