summaryrefslogtreecommitdiffstats
path: root/src/downloadManager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/downloadManager.cpp')
-rw-r--r--src/downloadManager.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/downloadManager.cpp b/src/downloadManager.cpp
index 9b44a3d..039809a 100644
--- a/src/downloadManager.cpp
+++ b/src/downloadManager.cpp
@@ -72,7 +72,6 @@ void downloadManager::startNextDownload()
/* get temporary filename from URL. */
QString tmp = url.path();
tmp.remove(0, tmp.lastIndexOf(QChar('/')) + 1);
- if (debug) qDebug() << "Extracted " << tmp << "from " << url.toString();
/* check if filename exists on target file system */
QFileInfo fi(downloadPath + "/" + tmp);
@@ -87,8 +86,7 @@ void downloadManager::startNextDownload()
if (debug) qDebug() << "Couldn't open file! Skipping...";
return;
}
- QString qs = QString(fi.absoluteFilePath() + ".\%1").arg(downloaded);
- qDebug() << "TEST:" << qs;
+
/* send the request for the file */
QNetworkRequest request(url);
currentDownload = qnam->get(request);