From 075ebf18f0a4b7faff31cf0033af508f0a211aa0 Mon Sep 17 00:00:00 2001 From: PandaX <18610165312@163.com> Date: Wed, 11 Dec 2024 01:53:15 +0000 Subject: [PATCH] =?UTF-8?q?[fix]=20=E8=AE=BE=E7=BD=AE=E5=88=9D=E6=AC=A1?= =?UTF-8?q?=E4=B8=BA=E7=A6=BB=E7=BA=BF=E7=8A=B6=E6=80=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: PandaX <18610165312@163.com> --- pkg/shadow/device.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/shadow/device.go b/pkg/shadow/device.go index 2b8d59c..2857575 100644 --- a/pkg/shadow/device.go +++ b/pkg/shadow/device.go @@ -16,7 +16,7 @@ type Device struct { func NewDevice(deviceName string) Device { return Device{ Name: deviceName, - online: true, + online: false, updatedAt: time.Now(), } }