1
0
mirror of https://github.com/clementine-player/Clementine synced 2024-12-19 12:53:25 +01:00
This commit is contained in:
Andreas 2013-07-16 22:17:25 +02:00
parent 01084de461
commit 4406992554

View File

@ -167,7 +167,7 @@ void RemoteClient::SendDataToClient(pb::remote::Message *msg) {
s << qint32(data.length());
if (downloader_) {
// Don't use QDataSteam for large files
client_->write(data.data(), data.length());;
client_->write(data.data(), data.length());
} else {
s.writeRawData(data.data(), data.length());
}