Browse Source

WebUI: Fix torrent file upload on Windows

adaptive-webui-19844
Christophe Dumez 13 years ago
parent
commit
085ab0e660
  1. 5
      src/webui/httpconnection.cpp

5
src/webui/httpconnection.cpp

@ -414,6 +414,11 @@ void HttpConnection::respondCommand(QString command) @@ -414,6 +414,11 @@ void HttpConnection::respondCommand(QString command)
std::cerr << "I/O Error: Could not create temporary file" << std::endl;
return;
}
#ifdef Q_WS_WIN
// Change extension to .torrent on Windows or loading will fail
QFile::rename(filePath, filePath+".torrent");
filePath += ".torrent";
#endif
emit torrentReadyToBeDownloaded(filePath, false, QString(), false);
delete tmpfile;
// Prepare response

Loading…
Cancel
Save