A fork of https://github.com/teal-fm/piper

filter out tracks without artists (podcasts, audiobooks, etc.)

+5
+5
service/spotify/spotify.go
··· 557 557 }) 558 558 } 559 559 560 + // ignore tracks with no artists (podcasts, audiobooks, etc) 561 + if len(artists) == 0 { 562 + return nil, nil 563 + } 564 + 560 565 // assemble Track 561 566 track := &models.Track{ 562 567 Name: response.Item.Name,