From 53314436cd5c02615741b100486fc58793ce46eb Mon Sep 17 00:00:00 2001 From: Jo-Byr Date: Fri, 31 Jul 2026 10:50:48 +0200 Subject: [PATCH] fix(domains): fix domains cache desynchronization Add server cache reset when resetting domains on client side to fix bug where the client no longer has a cache for a proxy domains but the server considers it cached and unnecessary to send --- vue3-components/src/core/utils.js | 1 + 1 file changed, 1 insertion(+) diff --git a/vue3-components/src/core/utils.js b/vue3-components/src/core/utils.js index 63d1f7e..05fc6b6 100644 --- a/vue3-components/src/core/utils.js +++ b/vue3-components/src/core/utils.js @@ -269,6 +269,7 @@ export class DataManager { resetDomains() { this.cache.domains = {}; + this.wsClient.getRemote().Trame.trigger(`${this.namespace}ResetCache`, []); } connectBus(bus) {