From 6bb1d7cd0ef7cd6f4daaa743d52b693bce757304 Mon Sep 17 00:00:00 2001 From: usbharu Date: Sun, 20 Apr 2025 18:16:22 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=E3=82=AA=E3=83=B3=E3=83=A9=E3=82=A4?= =?UTF-8?q?=E3=83=B3=E3=83=A6=E3=83=BC=E3=82=B6=E3=83=BC=E3=81=AE=E5=8F=96?= =?UTF-8?q?=E5=BE=97=E3=81=AB=E5=A4=B1=E6=95=97=E3=81=97=E3=81=9F=E3=81=A8?= =?UTF-8?q?=E3=81=8D=E3=82=A8=E3=83=A9=E3=83=BC=E3=81=A7=E7=B5=82=E4=BA=86?= =?UTF-8?q?=E3=81=99=E3=82=8B=E5=95=8F=E9=A1=8C=E3=82=92=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- collector.go | 1 + 1 file changed, 1 insertion(+) diff --git a/collector.go b/collector.go index a6de4f1..c819980 100644 --- a/collector.go +++ b/collector.go @@ -124,6 +124,7 @@ func collectOnlineUsers() { err = json.Unmarshal(all, &onlineUsers) if err != nil { logrus.WithField("type", "online-users").Warning(err) + continue } misskeyOnlineUsers.Set(float64(onlineUsers.Count)) }