mirror of
https://github.com/badaix/snapcast.git
synced 2025-06-07 13:21:43 +02:00
fixed stupid comparison. Thanks clang :)
This commit is contained in:
parent
161888eeee
commit
236786646b
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@ using namespace std;
|
||||||
SpotifyStream::SpotifyStream(PcmListener* pcmListener, const StreamUri& uri) : ProcessStream(pcmListener, uri)
|
SpotifyStream::SpotifyStream(PcmListener* pcmListener, const StreamUri& uri) : ProcessStream(pcmListener, uri)
|
||||||
{
|
{
|
||||||
sampleFormat_ = SampleFormat("44100:16:2");
|
sampleFormat_ = SampleFormat("44100:16:2");
|
||||||
uri_.query["sampleformat"] == sampleFormat_.getFormat();
|
uri_.query["sampleformat"] = sampleFormat_.getFormat();
|
||||||
|
|
||||||
string username = uri_.getQuery("username", "");
|
string username = uri_.getQuery("username", "");
|
||||||
string password = uri_.getQuery("password", "");
|
string password = uri_.getQuery("password", "");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue