summaryrefslogtreecommitdiffstats
path: root/src/DownloadManager.cpp
diff options
context:
space:
mode:
authorJonathan Bauer2011-03-08 11:12:46 +0100
committerJonathan Bauer2011-03-08 11:12:46 +0100
commita01ed9de193fc1d635200f8fae91c77d54921c62 (patch)
tree4255fa4e77e2715610999d434162d95025b0a288 /src/DownloadManager.cpp
parent. (diff)
downloadfbgui-a01ed9de193fc1d635200f8fae91c77d54921c62.tar.gz
fbgui-a01ed9de193fc1d635200f8fae91c77d54921c62.tar.xz
fbgui-a01ed9de193fc1d635200f8fae91c77d54921c62.zip
.
Diffstat (limited to 'src/DownloadManager.cpp')
-rw-r--r--src/DownloadManager.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/DownloadManager.cpp b/src/DownloadManager.cpp
index adda63e..00fbd7c 100644
--- a/src/DownloadManager.cpp
+++ b/src/DownloadManager.cpp
@@ -47,6 +47,7 @@ void DownloadManager::startNextDownload()
QString tmp = url.path();
tmp.remove(0, tmp.lastIndexOf(QChar('/')) + 1);
outfile.setFileName(downloadDirectory.path() + "/" + tmp);
+ if (debug) qDebug() << "DM: Absolute path: " << downloadDirectory.path() + "/" + tmp;
if (outfile.exists()){
if (debug) qDebug() << "File already exists. Skipping: " << url.toString();
startNextDownload();