diff --git a/internal/radio/icecast.go b/internal/radio/icecast.go index 2476626..bbf0c01 100644 --- a/internal/radio/icecast.go +++ b/internal/radio/icecast.go @@ -82,7 +82,7 @@ func IcecastLastSong(playlistPath string) (Song, error) { return lastPlayedCache[len(lastPlayedCache)-1], nil } - songs, err := IcecastLastPlayedSongs(1, playlistPath) + songs, err := lastPlayedSongs(1, playlistPath) if len(songs) == 0 { return Song{}, nil }