Fix ClassicalRadio.com and ROCKRADIO.com #5616

These two audio addict feeds do support premium -- Perhaps they didn't previously. This changes fixes the playlist not loading for me on a local build.

This was changed in https://github.com/clementine-player/Clementine/issues/4582
This commit is contained in:
Jason Freidman 2022-09-21 07:43:06 -07:00 committed by GitHub
parent 495803ab99
commit 9937f7b3a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -259,7 +259,7 @@ RockRadioService::RockRadioService(Application* app, InternetModel* model,
: DigitallyImportedServiceBase(
"RockRadio", "ROCKRADIO.com", QUrl("http://www.rockradio.com"),
IconLoader::Load("rockradio", IconLoader::Provider), "rockradio", app,
model, false, parent) {}
model, true, parent) {}
ClassicalRadioService::ClassicalRadioService(Application* app,
InternetModel* model,
@ -268,4 +268,4 @@ ClassicalRadioService::ClassicalRadioService(Application* app,
"ClassicalRadio", "ClassicalRadio.com",
QUrl("http://www.classicalradio.com"),
IconLoader::Load("digitallyimported", IconLoader::Provider),
"classicalradio", app, model, false, parent) {}
"classicalradio", app, model, true, parent) {}