diff --git a/internal/radio/mostlistened.go b/internal/radio/mostlistened.go index 7d5a8ee..f38395c 100644 --- a/internal/radio/mostlistened.go +++ b/internal/radio/mostlistened.go @@ -51,6 +51,9 @@ func CheckAndUpdateMostListenedSong(cur, prev *Song) { // MostListened returns song that currently is the song with most simultaneous // listeners. func MostListened() *MostListenedSong { + if mostListened.Date.Year() == 1 { + return nil + } return &mostListened }