diff --git a/composer.lock b/composer.lock index a63788b..c519df7 100644 --- a/composer.lock +++ b/composer.lock @@ -993,7 +993,7 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/nuxtify", - "reference": "81b3fd2236ce5f7870c34d89a2b56700e2f77ff8" + "reference": "07a7127c0a5b1880246e2bc2e1345b293588e716" }, "require": { "cweagans/composer-patches": "^1.7", @@ -1080,7 +1080,7 @@ "issues": "https://drupal.org/project/issues/nuxtify", "source": "https://git.drupalcode.org/project/nuxtify" }, - "time": "2024-05-04T15:22:01+00:00" + "time": "2024-05-05T14:04:27+00:00" }, { "name": "doctrine/annotations", diff --git a/frontend/base/server/api/cache/invalidate.post.ts b/frontend/base/server/api/cache/invalidate.post.ts index fd27bf4..0f233d3 100644 --- a/frontend/base/server/api/cache/invalidate.post.ts +++ b/frontend/base/server/api/cache/invalidate.post.ts @@ -6,7 +6,7 @@ export default defineEventHandler(async (event) => { for (const tag of tags) { for (const key of storageKeys) { - if (key.includes(`${tag.replace('/', ':')}&`)) + if (key.includes(`${tag.replace('/', ':')}`)) await storage.removeItem(key) } }