iobroker.lorawan 1.16.1 → 1.16.2

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.16.2 (2025-09-16)
27
+ * (BenAhrdt) bugfix namespace also by calling work from directoryhandler
28
+
26
29
  ### 1.16.1 (2025-09-16)
27
30
  * (BenAhrdt) bugfix namespace also by notifications
28
31
 
package/io-package.json CHANGED
@@ -1,8 +1,21 @@
1
1
  {
2
2
  "common": {
3
3
  "name": "lorawan",
4
- "version": "1.16.1",
4
+ "version": "1.16.2",
5
5
  "news": {
6
+ "1.16.2": {
7
+ "en": "bugfix namespace also by calling work from directoryhandler",
8
+ "de": "Bug behoben: Namensraum auch durch Aufruf von \"Arbeit\" von DirectoryHandler.",
9
+ "ru": "исправлена ошибка с пространством имен путем вызова работы из directoryhandler",
10
+ "pt": "Corrigido bug ao chamar namespace também utilizando o trabalho do directoryhandler.",
11
+ "nl": "Bugfix: Namespace wordt nu ook correct opgeroepen bij het gebruik van werk van DirectoryHandler.",
12
+ "fr": "Correction de bug du namespace également en appelant le travail du gestionnaire de répertoires.",
13
+ "it": "Correzione di bug anche chiamando il lavoro dal gestore della directory.",
14
+ "es": "Corrección de error en el espacio de nombres al llamar al trabajo desde directoryhandler",
15
+ "pl": "Poprawka błędu: przestrzeń nazw również wywoływana przez funkcję work z directoryhandler",
16
+ "uk": "виправлено помилку у просторі імен також шляхом виклику роботи з обробника директорій",
17
+ "zh-cn": "通过调用`directoryhandler`来修复了`namespace`问题。"
18
+ },
6
19
  "1.16.1": {
7
20
  "en": "bugfix namespace also by notifications",
8
21
  "de": "Fehlerbehebung Namespace auch bei Benachrichtigungen",
@@ -80,19 +93,6 @@
80
93
  "pl": "Usunięto logowanie błędów",
81
94
  "uk": "Виправлено запис журналів про помилки",
82
95
  "zh-cn": "修复了日志记录问题"
83
- },
84
- "1.15.4": {
85
- "en": "Bugfix send state topics retain\nBugfix with stateending",
86
- "de": "Fehlerbehebung für das Beibehalten der Zustandsthemen beim Senden\nFehlerbehebung beim Zustandsende",
87
- "ru": "Исправлена ошибка с сохранением тем состояний при отправке\nИсправлена ошибка со stateending",
88
- "pt": "Correção de bug: envio de tópicos de estado mantendo a retenção.\nCorreção de bug com stateending",
89
- "nl": "Bugfix stuurstatus onderwerpen behouden\nBugfix met stateending",
90
- "fr": "Correction de bug pour conserver les sujets des états envoyés\nCorrection de bug avec stateEnding",
91
- "it": "Risoluzione di bug per la conservazione dei topic di invio degli stati\nCorrezione di bug con stateending.",
92
- "es": "Corrección de error en la retención de temas al enviar estados\nCorrección de error con state ending",
93
- "pl": "Naprawiono błąd z zachowaniem tematów stanów wysyłanych.\nPoprawka błędu dotycząca kończenia stanu",
94
- "uk": "Виправлено помилку збереження тем для відправлення стану\nВиправлено помилку з порядком стану",
95
- "zh-cn": "修复发送状态主题时的保留问题\n修复了和状态结尾相关的问题"
96
96
  }
97
97
  },
98
98
  "titleLang": {
@@ -495,7 +495,9 @@ class directorieshandlerClass {
495
495
  });
496
496
  // Add Bridged Funktion (MQTT auto discovery)
497
497
  // Add for new state
498
- await this.adapter.bridge?.work(objectId, stateVal, { common: common });
498
+ await this.adapter.bridge?.work(`${this.adapter.namespace}.${objectId}`, stateVal, {
499
+ common: common,
500
+ });
499
501
  if (typeof stateVal === 'object') {
500
502
  stateVal = JSON.stringify(stateVal);
501
503
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iobroker.lorawan",
3
- "version": "1.16.1",
3
+ "version": "1.16.2",
4
4
  "description": "converts the desired lora gateway data to a ioBroker structure",
5
5
  "author": {
6
6
  "name": "BenAhrdt",