iobroker.lorawan 1.19.31 → 1.19.32
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/README.md +3 -0
- package/io-package.json +14 -14
- package/lib/modules/bridgeMqttclient.js +5 -10
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -23,6 +23,9 @@ For now there is documentation in English here: https://wiki.hafenmeister.de
|
|
|
23
23
|
Placeholder for the next version (at the beginning of the line):
|
|
24
24
|
### **WORK IN PROGRESS**
|
|
25
25
|
-->
|
|
26
|
+
### 1.19.32 (2026-01-16)
|
|
27
|
+
* (BenAhrdt) bugfix await this.ObjectExists
|
|
28
|
+
|
|
26
29
|
### 1.19.31 (2026-01-16)
|
|
27
30
|
* (BenAhrdt) add try catch for adding filter (strage bug)
|
|
28
31
|
|
package/io-package.json
CHANGED
|
@@ -1,8 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"common": {
|
|
3
3
|
"name": "lorawan",
|
|
4
|
-
"version": "1.19.
|
|
4
|
+
"version": "1.19.32",
|
|
5
5
|
"news": {
|
|
6
|
+
"1.19.32": {
|
|
7
|
+
"en": "bugfix await this.ObjectExists",
|
|
8
|
+
"de": "bugfix warten darauf. ObjekteExperimente",
|
|
9
|
+
"ru": "багфикс, жди этого. Объекты существуют",
|
|
10
|
+
"pt": "bugfix espera por isto. O objeto existe",
|
|
11
|
+
"nl": "bugfix wacht hier op. ObjectBestaat",
|
|
12
|
+
"fr": "bugfix attend ça. Objet Existe",
|
|
13
|
+
"it": "bugfix aspetta questo. OBIETTIVI",
|
|
14
|
+
"es": "bugfix espera esto. ObjectExists",
|
|
15
|
+
"pl": "bugfix czeka na to. ObjectExists",
|
|
16
|
+
"uk": "виправлено помилку. Об'єкти",
|
|
17
|
+
"zh-cn": "bugfix 等待这个 。 对象存在"
|
|
18
|
+
},
|
|
6
19
|
"1.19.31": {
|
|
7
20
|
"en": "add try catch for adding filter (strage bug)",
|
|
8
21
|
"de": "fügen sie versuchen zu fangen für das hinzufügen von filter (strge bug)",
|
|
@@ -80,19 +93,6 @@
|
|
|
80
93
|
"pl": "budować wewnętrzny logowanie",
|
|
81
94
|
"uk": "створення внутрішнього входу",
|
|
82
95
|
"zh-cn": "建立内部记录"
|
|
83
|
-
},
|
|
84
|
-
"1.19.25": {
|
|
85
|
-
"en": "handle promise rejection before publish",
|
|
86
|
-
"de": "zurückweisung vor der veröffentlichung",
|
|
87
|
-
"ru": "обработать отказ от обещания до публикации",
|
|
88
|
-
"pt": "lidar com rejeição promessa antes de publicar",
|
|
89
|
-
"nl": "de belofteweigering afhandelen voordat deze gepubliceerd wordt",
|
|
90
|
-
"fr": "traiter le rejet de promesse avant de publier",
|
|
91
|
-
"it": "gestire il rifiuto promessa prima di pubblicare",
|
|
92
|
-
"es": "el rechazo de la promesa antes de publicar",
|
|
93
|
-
"pl": "obsługiwać odrzucenie obietnicy przed publikacją",
|
|
94
|
-
"uk": "ручка обіцяє відхилення перед опублікуванням",
|
|
95
|
-
"zh-cn": "在发布前处理拒绝承诺"
|
|
96
96
|
}
|
|
97
97
|
},
|
|
98
98
|
"titleLang": {
|
|
@@ -29,17 +29,12 @@ class bridgeMqttClientClass {
|
|
|
29
29
|
|
|
30
30
|
this.client.on('connect', async () => {
|
|
31
31
|
// Assign filter, if present
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
this.filter.outgoing = (await this.adapter.getStateAsync('bridge.debug.outgoingTopicFilter')).val;
|
|
38
|
-
}
|
|
39
|
-
} catch (error) {
|
|
40
|
-
this.adapter.log.error(`error at conect and assign filter: ${error}`);
|
|
32
|
+
if (await this.adapter.objectExists('bridge.debug.incommingTopicFilter')) {
|
|
33
|
+
this.filter.incomming = (await this.adapter.getStateAsync('bridge.debug.incommingTopicFilter')).val;
|
|
34
|
+
}
|
|
35
|
+
if (await this.adapter.objectExists('bridge.debug.outgoingTopicFilter')) {
|
|
36
|
+
this.filter.outgoing = (await this.adapter.getStateAsync('bridge.debug.outgoingTopicFilter')).val;
|
|
41
37
|
}
|
|
42
|
-
|
|
43
38
|
if (!this.internalConnectionstate) {
|
|
44
39
|
this.adapter.log.info(`Connection to Bridge is active.`);
|
|
45
40
|
}
|