From b378c18ba0ac59491cb8173ebc4e4de9a4956612 Mon Sep 17 00:00:00 2001 From: Florian Hotze Date: Sun, 22 Dec 2024 17:32:59 +0100 Subject: [PATCH] Things list: Do not listen to InboxUpdatedEvents Those do not change the inbox count and hence can be ignored. Signed-off-by: Florian Hotze --- .../web/src/pages/settings/things/things-list.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundles/org.openhab.ui/web/src/pages/settings/things/things-list.vue b/bundles/org.openhab.ui/web/src/pages/settings/things/things-list.vue index 50a952683a..cae7243ec1 100644 --- a/bundles/org.openhab.ui/web/src/pages/settings/things/things-list.vue +++ b/bundles/org.openhab.ui/web/src/pages/settings/things/things-list.vue @@ -374,7 +374,7 @@ export default { }) }, startEventSource () { - this.eventSource = this.$oh.sse.connect('/rest/events?topics=openhab/things/*/added,openhab/things/*/removed,openhab/things/*/updated,openhab/things/*/status,openhab/inbox/*', null, (event) => { + this.eventSource = this.$oh.sse.connect('/rest/events?topics=openhab/things/*/added,openhab/things/*/removed,openhab/things/*/updated,openhab/things/*/status,openhab/inbox/*/added,openhab/inbox/*/removed', null, (event) => { const topicParts = event.topic.split('/') if (topicParts[1] === 'inbox') { this.loadInbox()