Fix playback of AudioCDs

This commit is contained in:
Craig Drummond
2016-03-17 23:11:57 +00:00
committed by Craig Drummond
parent 813e6b7cd1
commit 658788645b
6 changed files with 14 additions and 6 deletions

View File

@@ -210,7 +210,7 @@ HttpSocket::HttpSocket(const QString &iface, quint16 port)
openPort(0);
}
DBUG << isListening();
DBUG << isListening() << serverPort();
connect(MPDConnection::self(), SIGNAL(socketAddress(QString)), this, SLOT(mpdAddress(QString)));
connect(MPDConnection::self(), SIGNAL(cantataStreams(QList<Song>,bool)), this, SLOT(cantataStreams(QList<Song>,bool)));
@@ -406,7 +406,7 @@ void HttpSocket::readClient()
} while (readPos<totalBytes && !stop && !terminated);
}
} else {
DBUG << "Filed to open" << song.file;
DBUG << "Failed to open" << song.file;
}
}
}