Compare commits

...
2 Commits
Author SHA1 Message Date
Ingo Fischer e6b58530d4 chore: release v1.1.2
* (Apollon77) Fix crash cases reported by Sentry
2022-03-29 09:07:54 +02:00
Ingo Fischer dc47f48004 * (Apollon77) Fix crash cases reported by Sentry (IOBROKER-HASS-2) 2022-03-29 08:59:10 +02:00
4 changed files with 18 additions and 3 deletions
+3
View File
@@ -93,6 +93,9 @@ Please check it https://www.smarthomejetzt.de/mit-iobroker-auf-eine-home-assista
--> -->
## Changelog ## Changelog
### 1.1.2 (2022-03-29)
* (Apollon77) Fix crash cases reported by Sentry
### 1.1.1 (2022-03-25) ### 1.1.1 (2022-03-25)
* (Apollon77) Show password fields masked again in config * (Apollon77) Show password fields masked again in config
+13 -1
View File
@@ -1,7 +1,7 @@
{ {
"common": { "common": {
"name": "hass", "name": "hass",
"version": "1.1.1", "version": "1.1.2",
"title": "Home Assistant", "title": "Home Assistant",
"titleLang": { "titleLang": {
"en": "Home Assistant", "en": "Home Assistant",
@@ -28,6 +28,18 @@
"zh-cn": "ioBroker 的家庭助理连接" "zh-cn": "ioBroker 的家庭助理连接"
}, },
"news": { "news": {
"1.1.2": {
"en": "Fix crash cases reported by Sentry",
"de": "Von Sentry gemeldete Absturzfälle beheben",
"ru": "Исправить случаи сбоев, о которых сообщил Sentry",
"pt": "Corrigir casos de travamento relatados pelo Sentinela",
"nl": "Herstel crashgevallen gemeld door Sentry",
"fr": "Correction des cas de plantage signalés par Sentry",
"it": "Risolvi i casi di crash segnalati da Sentry",
"es": "Solucionar casos de fallas informados por Sentry",
"pl": "Napraw przypadki awarii zgłoszone przez Sentry",
"zh-cn": "修复 Sentry 报告的崩溃案例"
},
"1.1.1": { "1.1.1": {
"en": "Show password fields masked again in config", "en": "Show password fields masked again in config",
"de": "Passwortfelder in config wieder maskiert anzeigen", "de": "Passwortfelder in config wieder maskiert anzeigen",
+1 -1
View File
@@ -383,7 +383,7 @@ function main() {
} }
if (entity.attributes) { if (entity.attributes) {
for (const attr in entity.attributes) { for (const attr in entity.attributes) {
if (!entity.attributes.hasOwnProperty(attr) || attr === 'friendly_name' || attr === 'unit_of_measurement' || attr === 'icon') { if (!entity.attributes.hasOwnProperty(attr) || attr === 'friendly_name' || attr === 'unit_of_measurement' || attr === 'icon'|| !attr.length) {
continue; continue;
} }
let val = entity.attributes[attr]; let val = entity.attributes[attr];
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "iobroker.hass", "name": "iobroker.hass",
"version": "1.1.1", "version": "1.1.2",
"description": "Home Assistant", "description": "Home Assistant",
"author": { "author": {
"name": "bluefox", "name": "bluefox",