From d682bd2ebbf97e4f24bb6fcf44961d6048d2677e Mon Sep 17 00:00:00 2001 From: Koushik Dutta Date: Fri, 26 Jul 2024 08:28:53 -0700 Subject: [PATCH] reolink: reset siren state --- plugins/reolink/package-lock.json | 4 ++-- plugins/reolink/package.json | 2 +- plugins/reolink/src/main.ts | 1 + 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/plugins/reolink/package-lock.json b/plugins/reolink/package-lock.json index a8ec46b87..a57c87ba4 100644 --- a/plugins/reolink/package-lock.json +++ b/plugins/reolink/package-lock.json @@ -1,12 +1,12 @@ { "name": "@scrypted/reolink", - "version": "0.0.85", + "version": "0.0.86", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@scrypted/reolink", - "version": "0.0.85", + "version": "0.0.86", "license": "Apache", "dependencies": { "@scrypted/common": "file:../../common", diff --git a/plugins/reolink/package.json b/plugins/reolink/package.json index 4fd8fd1ab..3da127480 100644 --- a/plugins/reolink/package.json +++ b/plugins/reolink/package.json @@ -1,6 +1,6 @@ { "name": "@scrypted/reolink", - "version": "0.0.85", + "version": "0.0.86", "description": "Reolink Plugin for Scrypted", "author": "Scrypted", "license": "Apache", diff --git a/plugins/reolink/src/main.ts b/plugins/reolink/src/main.ts index 3606d1afa..6c27ac880 100644 --- a/plugins/reolink/src/main.ts +++ b/plugins/reolink/src/main.ts @@ -14,6 +14,7 @@ class ReolinkCameraSiren extends ScryptedDeviceBase implements OnOff { constructor(public camera: ReolinkCamera, nativeId: string) { super(nativeId); + this.on = false; } async turnOff() {