This commit is contained in:
Andreas 2013-07-16 22:17:25 +02:00
parent 01084de461
commit 4406992554
1 changed files with 1 additions and 1 deletions

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());
}