Socket
Socket
Sign inDemoInstall

iobroker.wifilight

Package Overview
Dependencies
14
Maintainers
23
Versions
49
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.1.1 to 1.1.2

14

io-package.json
{
"common": {
"name": "wifilight",
"version": "1.1.1",
"version": "1.1.2",
"news": {
"1.1.2": {
"en": "Prevent crashes when states are controlled with null as value",
"de": "Abstürze verhindern, wenn Zustände mit null als Wert gesteuert werden",
"ru": "Предотвратите сбои, когда состояния контролируются с нулевым значением в качестве значения",
"pt": "Evitar travamentos quando os estados são controlados com valor nulo",
"nl": "Voorkom crashes wanneer staten worden gecontroleerd met null als waarde",
"fr": "Empêcher les plantages lorsque les états sont contrôlés avec null comme valeur",
"it": "Impedisci arresti anomali quando gli stati sono controllati con null come valore",
"es": "Evita bloqueos cuando los estados se controlan con un valor nulo",
"pl": "Zapobiegaj awariom, gdy stany są kontrolowane z wartością null",
"zh-cn": "以 null 作为值控制状态时防止崩溃"
},
"1.1.1": {

@@ -7,0 +19,0 @@ "en": "Prevent error logs with js-controller 3+\nAdded sentry for error reporting",

2

main.js

@@ -142,3 +142,3 @@ "use strict";

var device = wifi[deviceName];
if (device == undefined || !device.isOnline) return;
if (device == undefined || !device.isOnline || !state || state.val === null || state.ack) return;
if (device.cmds.decodeResponse) devices.invalidate(id);

@@ -145,0 +145,0 @@ device.stopRunningProgram();

{
"name": "iobroker.wifilight",
"version": "1.1.1",
"version": "1.1.2",
"description": "WiFi Light Adapter",

@@ -5,0 +5,0 @@ "author": {

@@ -65,2 +65,5 @@ ![Logo](admin/wifilight.png)

## Changelog
### 1.1.2 (2022-04-19)
* (Apollon77) Prevent crashes when states are controlled with null as value
### 1.1.1 (2022-04-17)

@@ -67,0 +70,0 @@ * (Apollon77) Prevent error logs with js-controller 3+

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc