rename spotify to librespot

This commit is contained in:
badaix 2019-10-13 19:32:11 +02:00
parent 7fda592d13
commit 08a0def6c5
4 changed files with 12 additions and 12 deletions

View file

@ -69,9 +69,9 @@ PcmStreamPtr StreamManager::addStream(const std::string& uri)
{
stream = make_shared<ProcessStream>(pcmListener_, streamUri);
}
else if (streamUri.scheme == "spotify")
else if ((streamUri.scheme == "spotify") || (streamUri.scheme == "librespot"))
{
stream = make_shared<SpotifyStream>(pcmListener_, streamUri);
stream = make_shared<LibrespotStream>(pcmListener_, streamUri);
}
else if (streamUri.scheme == "airplay")
{