diff --git a/viewer/src/lru-store.ts b/viewer/src/lru-store.ts index b15bb2f..6c82634 100644 --- a/viewer/src/lru-store.ts +++ b/viewer/src/lru-store.ts @@ -19,7 +19,10 @@ function normalizeKey(key: string, range?: RangeQuery) { // For namespace keys function sanitizeKey(key: `/${string}`): `/${string}` { - return `/.${key}`; + if (key.split("/")[1]?.includes(":")) { + return `/.${key}`; + } + return key; } export function lru(store: S, maxSize = 100) {