Add radios

This commit is contained in:
Jonas Kvinge
2021-07-11 01:02:53 +02:00
parent d07aff9872
commit 09bbf1f4d7
65 changed files with 2363 additions and 45 deletions

View File

@@ -46,6 +46,8 @@ PlaylistItem *PlaylistItem::NewFromSource(const Song::Source source) {
case Song::Source_Subsonic:
case Song::Source_Tidal:
case Song::Source_Qobuz:
case Song::Source_RadioParadise:
case Song::Source_SomaFM:
case Song::Source_Stream:
return new InternetPlaylistItem(source);
case Song::Source_LocalFile:
@@ -67,6 +69,8 @@ PlaylistItem *PlaylistItem::NewFromSong(const Song &song) {
case Song::Source_Subsonic:
case Song::Source_Tidal:
case Song::Source_Qobuz:
case Song::Source_RadioParadise:
case Song::Source_SomaFM:
case Song::Source_Stream:
return new InternetPlaylistItem(song);
case Song::Source_LocalFile: