From 4a2b6fc752c6f6280809249ba17f273b33aa8b57 Mon Sep 17 00:00:00 2001 From: Virgil Date: Thu, 2 Apr 2026 14:40:08 +0000 Subject: [PATCH] chore(lns): clarify catalog lookup order Co-Authored-By: Virgil --- lns.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lns.go b/lns.go index 3606e38..ca04d85 100644 --- a/lns.go +++ b/lns.go @@ -168,6 +168,8 @@ func lookupCatalogName[T any]( return zero, false } + // Try the raw label first so dotted catalog labels remain addressable by + // their exact catalog name instead of forcing them through hash lookup. if item, ok := byLabel(label); ok { return item, true }