fix: オンラインユーザーの取得に失敗したときエラーで終了する問題を修正
docker-ci / docker (push) Successful in 1m1s Details

This commit is contained in:
usbharu 2025-04-20 18:16:22 +09:00
parent 2fe3084d80
commit 6bb1d7cd0e
Signed by: usbharu
GPG Key ID: 8CB1087135660B8D
1 changed files with 1 additions and 0 deletions

View File

@ -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))
}