@matterbridge/core 3.9.1-dev-20260617-8de71e5 → 3.9.1-dev-20260618-28c78fc
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.
|
@@ -224,7 +224,10 @@ export class MatterbridgeEndpoint extends Endpoint {
|
|
|
224
224
|
const normalizedAttribute = lowercaseFirstLetter(attribute);
|
|
225
225
|
const options = this.behaviors.optionsFor(behavior);
|
|
226
226
|
const defaults = defaultFor(behavior, options);
|
|
227
|
-
|
|
227
|
+
const behaviorDefaults = behavior.defaults;
|
|
228
|
+
return ((options !== undefined && normalizedAttribute in options) ||
|
|
229
|
+
(defaults !== undefined && normalizedAttribute in defaults) ||
|
|
230
|
+
behaviorDefaults[normalizedAttribute] !== undefined);
|
|
228
231
|
}
|
|
229
232
|
getClusterServerOptions(cluster) {
|
|
230
233
|
const behavior = getBehavior(this, cluster);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@matterbridge/core",
|
|
3
|
-
"version": "3.9.1-dev-
|
|
3
|
+
"version": "3.9.1-dev-20260618-28c78fc",
|
|
4
4
|
"description": "Matterbridge core library",
|
|
5
5
|
"author": "https://github.com/Luligu",
|
|
6
6
|
"homepage": "https://matterbridge.io/",
|
|
@@ -130,10 +130,10 @@
|
|
|
130
130
|
],
|
|
131
131
|
"dependencies": {
|
|
132
132
|
"@matter/main": "0.17.3",
|
|
133
|
-
"@matterbridge/dgram": "3.9.1-dev-
|
|
134
|
-
"@matterbridge/thread": "3.9.1-dev-
|
|
135
|
-
"@matterbridge/types": "3.9.1-dev-
|
|
136
|
-
"@matterbridge/utils": "3.9.1-dev-
|
|
133
|
+
"@matterbridge/dgram": "3.9.1-dev-20260618-28c78fc",
|
|
134
|
+
"@matterbridge/thread": "3.9.1-dev-20260618-28c78fc",
|
|
135
|
+
"@matterbridge/types": "3.9.1-dev-20260618-28c78fc",
|
|
136
|
+
"@matterbridge/utils": "3.9.1-dev-20260618-28c78fc",
|
|
137
137
|
"escape-html": "1.0.3",
|
|
138
138
|
"express": "5.2.1",
|
|
139
139
|
"express-rate-limit": "8.5.2",
|