@matterbridge/core 3.9.5-dev-20260713-c2a2b1e → 3.9.5-dev-20260714-6230956
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -571,12 +571,14 @@ export function addClusterClients(endpoint, clientList) {
|
|
|
571
571
|
for (const clusterId of clientList) {
|
|
572
572
|
const key = lowercaseFirstLetter(getClusterNameById(clusterId));
|
|
573
573
|
const value = getBehaviourTypeFromClusterClientId(clusterId);
|
|
574
|
-
if (!
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
574
|
+
if (!clientClusters[key]) {
|
|
575
|
+
if (value) {
|
|
576
|
+
clientClusters[key] = value;
|
|
577
|
+
endpoint.log.info(`addClusterClients: added client behavior for clusterId ${hk}0x${clusterId.toString(16).padStart(4, '0')}${nf}`);
|
|
578
|
+
}
|
|
579
|
+
else {
|
|
580
|
+
endpoint.log.warn(`addClusterClients: no client behavior found for clusterId ${hk}0x${clusterId.toString(16).padStart(4, '0')}${wr}`);
|
|
581
|
+
}
|
|
580
582
|
}
|
|
581
583
|
}
|
|
582
584
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@matterbridge/core",
|
|
3
|
-
"version": "3.9.5-dev-
|
|
3
|
+
"version": "3.9.5-dev-20260714-6230956",
|
|
4
4
|
"description": "Matterbridge core library",
|
|
5
5
|
"author": "https://github.com/Luligu",
|
|
6
6
|
"homepage": "https://matterbridge.io/",
|
|
@@ -136,10 +136,10 @@
|
|
|
136
136
|
},
|
|
137
137
|
"dependencies": {
|
|
138
138
|
"@matter/main": "0.17.5",
|
|
139
|
-
"@matterbridge/dgram": "3.9.5-dev-
|
|
140
|
-
"@matterbridge/thread": "3.9.5-dev-
|
|
141
|
-
"@matterbridge/types": "3.9.5-dev-
|
|
142
|
-
"@matterbridge/utils": "3.9.5-dev-
|
|
139
|
+
"@matterbridge/dgram": "3.9.5-dev-20260714-6230956",
|
|
140
|
+
"@matterbridge/thread": "3.9.5-dev-20260714-6230956",
|
|
141
|
+
"@matterbridge/types": "3.9.5-dev-20260714-6230956",
|
|
142
|
+
"@matterbridge/utils": "3.9.5-dev-20260714-6230956",
|
|
143
143
|
"escape-html": "1.0.3",
|
|
144
144
|
"express": "5.2.1",
|
|
145
145
|
"express-rate-limit": "8.5.2",
|