iobroker.lorawan 1.20.4 → 1.20.5

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 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.20.5 (2026-01-25)
27
+ * (BenAhrdt) bugfixing updating object Store with not alowed id
28
+
26
29
  ### 1.20.4 (2026-01-25)
27
30
  * (BenAhrdt) experimental to debug in live system
28
31
 
package/io-package.json CHANGED
@@ -1,8 +1,21 @@
1
1
  {
2
2
  "common": {
3
3
  "name": "lorawan",
4
- "version": "1.20.4",
4
+ "version": "1.20.5",
5
5
  "news": {
6
+ "1.20.5": {
7
+ "en": "bugfixing updating object Store with not alowed id",
8
+ "de": "bugfixing update object Store with not alowed id",
9
+ "ru": "bugfixing Update Object Store с невысоким идентификатором",
10
+ "pt": "correcção de erros para actualizar o objecto Armazenar sem ID abaixado",
11
+ "nl": "bugfixing update object Store with not alowed id",
12
+ "fr": "bugfixing update object Store avec id non alowed",
13
+ "it": "bugfixing aggiornamento oggetti Store con non alowed id",
14
+ "es": "bugfixing actualización objeto Store with not alowed id",
15
+ "pl": "bugfitting aktualizacja obiektu Przechowuj bez przypisanego id",
16
+ "uk": "виправлення помилок оновлення об'єкту Store з не потовщеним id",
17
+ "zh-cn": "正在更新对象 Store, 且未减少 ID"
18
+ },
6
19
  "1.20.4": {
7
20
  "en": "experimental to debug in live system",
8
21
  "de": "experimentell zu debug im live-system",
@@ -80,19 +93,6 @@
80
93
  "pl": "przypisz Procent i Liter w assignhandler",
81
94
  "uk": "призначте відсоток & Література в assignhandler",
82
95
  "zh-cn": "在指定手牌中指定百分数( L)"
83
- },
84
- "1.19.33": {
85
- "en": "sonoff bugfix aparrant_power",
86
- "de": "sonoff bugfix aparrant_power",
87
- "ru": "sonoff bugfix aparrant_power скачать бесплатно",
88
- "pt": "sonoff bugfix aparrant_ power",
89
- "nl": "sonoff bugfix aparrant_power",
90
- "fr": "sonoff bugfix aparrant_power",
91
- "it": "sonoff bugfix aparrant_power",
92
- "es": "sonoff bugfix aparrant_power",
93
- "pl": "sonoff bugfix aparrant _ power",
94
- "uk": "gaeilge, english, українська..",
95
- "zh-cn": "sonoff 错误修补parrant_power"
96
96
  }
97
97
  },
98
98
  "titleLang": {
package/main.js CHANGED
@@ -503,7 +503,9 @@ class Lorawan extends utils.Adapter {
503
503
  // Internal Objects => Assign to objectStore
504
504
  if (id.startsWith(this.namespace)) {
505
505
  // Update State in objectStore
506
- await this.objectStore?.generateObjectStructureFromId(id, { payload: { object: obj } });
506
+ if (!id.startsWith(`${this.namespace}.info`) && !id.startsWith(`${this.namespace}.bridge`)) {
507
+ await this.objectStore?.generateObjectStructureFromId(id, { payload: { object: obj } });
508
+ }
507
509
 
508
510
  // External States
509
511
  } else {
@@ -940,7 +942,9 @@ class Lorawan extends utils.Adapter {
940
942
  await this.bridge?.publishId(id, state.val, {});
941
943
  } else {
942
944
  // Update State in objectStore
943
- await this.objectStore?.generateObjectStructureFromId(id, { payload: { state: state } });
945
+ if (!id.startsWith(`${this.namespace}.info`) && !id.startsWith(`${this.namespace}.bridge`)) {
946
+ await this.objectStore?.generateObjectStructureFromId(id, { payload: { state: state } });
947
+ }
944
948
  }
945
949
  }
946
950
  } else {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iobroker.lorawan",
3
- "version": "1.20.4",
3
+ "version": "1.20.5",
4
4
  "description": "converts the desired lora gateway data to a ioBroker structure",
5
5
  "author": {
6
6
  "name": "BenAhrdt",