Skip to content

Commit

Permalink
chore: release v1.9.1
Browse files Browse the repository at this point in the history
* (arteck) corr TypeError: Cannot read properties of undefined (reading 'state')
  • Loading branch information
arteck committed Dec 23, 2023
1 parent 88175ba commit 5f94512
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 24 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,9 @@ You can thank the authors by these links:
-----------------------------------------------------------------------------------------------------

## Changelog
### 1.9.1 (2023-12-23)
* (arteck) corr TypeError: Cannot read properties of undefined (reading 'state')

### 1.9.0 (2023-12-22)
* (arteck) up to new zhc
* (arteck) update dependency
Expand Down
28 changes: 14 additions & 14 deletions io-package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,21 @@
{
"common": {
"name": "zigbee",
"version": "1.9.0",
"version": "1.9.1",
"news": {
"1.9.1": {
"en": "corr TypeError: Cannot read properties of undefined (reading 'state')",
"de": "korpustyp Fehler: Kann Eigenschaften von undefinierten (Lesezustand) nicht lesen",
"ru": "тип корр Ошибка: Не смогите прочитать свойства неопределенного (читая состояние)",
"pt": "tipo de corante Erro: Não pode ler propriedades de indefinido (estado de leitura)",
"nl": "_ Kan geen eigendommen lezen van onbepaalde staat",
"fr": "type Erreur: Impossible de lire les propriétés indéfinies (état de lecture)",
"it": "tipo Errore: non può leggere le proprietà di non definito (stato di lettura)",
"es": "tipo de corrido Error: No se pueden leer propiedades de estado indefinido (estado de lectura)",
"pl": "kor Type Error: Cannot przeczytał właściwości nieokreślone (czytać stan)",
"uk": "тип кореня Помилка: Не можна прочитати властивості невизнаного (прочитаного стану)",
"zh-cn": "类型 Error: Cannot宣读了未界定的(国名)财产"
},
"1.9.0": {
"en": "up to new zhc\nupdate dependency",
"de": "bis zum neuen zhc\naktualisierung abhängigkeit",
Expand Down Expand Up @@ -80,19 +93,6 @@
"pl": "wykorzystywanie z xiaomi jest obecnie lepsze",
"uk": "запиту від xiaomi тепер краще",
"zh-cn": "来自米亚米的询问现在更好。"
},
"1.8.22": {
"en": "crash when meta is empty",
"de": "crash, wenn meta leer ist",
"ru": "сбой, когда мета пуста",
"pt": "acidente quando meta está vazio",
"nl": "als meta leeg is",
"fr": "crash quand meta est vide",
"it": "crash quando il meta è vuoto",
"es": "estrellarse cuando meta está vacía",
"pl": "w przypadku, gdy meta jest pusta",
"uk": "аварійний випадок, коли мета",
"zh-cn": "c 当元空时发生事故"
}
},
"titleLang": {
Expand Down
6 changes: 3 additions & 3 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -551,9 +551,9 @@ class Zigbee extends utils.Adapter {
return;
}

meta.state = { state: "" }; // for tuya
this.processConverters(converters, devId, model, mappedModel, message, meta)
meta.state = { state: '' }; // for tuya

this.processConverters(converters, devId, model, mappedModel, message, meta)
.catch((error) => {
this.log.error(`Error while processing converters DEVICE_ID: '${devId}' `);
});
Expand Down
12 changes: 6 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "iobroker.zigbee",
"version": "1.9.0",
"version": "1.9.1",
"author": {
"name": "Kirov Ilya",
"email": "[email protected]"
Expand Down

0 comments on commit 5f94512

Please sign in to comment.