matterbridge 3.4.1-dev-20251130-ae6b492 → 3.4.1-dev-20251130-17ef5f4
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.
- package/dist/matterbridge.js +1 -1
- package/dist/update.js +1 -1
- package/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
package/dist/matterbridge.js
CHANGED
|
@@ -634,7 +634,7 @@ export class Matterbridge extends EventEmitter {
|
|
|
634
634
|
this.checkUpdateTimeout = setTimeout(async () => {
|
|
635
635
|
const { checkUpdates } = await import('./update.js');
|
|
636
636
|
checkUpdates(this);
|
|
637
|
-
},
|
|
637
|
+
}, 300 * 1000).unref();
|
|
638
638
|
clearInterval(this.checkUpdateInterval);
|
|
639
639
|
this.checkUpdateInterval = setInterval(async () => {
|
|
640
640
|
const { checkUpdates } = await import('./update.js');
|
package/dist/update.js
CHANGED
|
@@ -12,7 +12,7 @@ export async function checkUpdates(matterbridge) {
|
|
|
12
12
|
const pluginsVersionPromises = [];
|
|
13
13
|
const pluginsDevVersionPromises = [];
|
|
14
14
|
const shellyUpdatesPromises = [];
|
|
15
|
-
const plugins = (await server.fetch({ type: 'plugins_apipluginarray', src: server.name, dst: 'plugins' })).result.plugins;
|
|
15
|
+
const plugins = (await server.fetch({ type: 'plugins_apipluginarray', src: server.name, dst: 'plugins' }, 1000)).result.plugins;
|
|
16
16
|
for (const plugin of plugins) {
|
|
17
17
|
pluginsVersionPromises.push(getPluginLatestVersion(log, server, plugin));
|
|
18
18
|
pluginsDevVersionPromises.push(getPluginDevVersion(log, server, plugin));
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "matterbridge",
|
|
3
|
-
"version": "3.4.1-dev-20251130-
|
|
3
|
+
"version": "3.4.1-dev-20251130-17ef5f4",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "matterbridge",
|
|
9
|
-
"version": "3.4.1-dev-20251130-
|
|
9
|
+
"version": "3.4.1-dev-20251130-17ef5f4",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@matter/main": "0.15.6",
|
package/package.json
CHANGED