Merge pull request 'now-playing: 再生情報の取得に失敗したときのエラーハンドリングを追加' (#21) from now-playing into master

Reviewed-on: #21
This commit is contained in:
usbharu 2024-03-19 10:35:25 +00:00
commit 08b35d68b8
1 changed files with 3 additions and 1 deletions

View File

@ -48,7 +48,9 @@ func main() {
for { for {
playing, err := client.PlayerCurrentlyPlaying(ctx) playing, err := client.PlayerCurrentlyPlaying(ctx)
if err != nil { if err != nil {
log.Fatal(err) log.Println(err)
time.Sleep(10 * time.Minute)
continue
} }
if !playing.Playing { if !playing.Playing {