aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/http/httpfiletransfer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/http/httpfiletransfer.cpp')
-rw-r--r--src/modules/http/httpfiletransfer.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/http/httpfiletransfer.cpp b/src/modules/http/httpfiletransfer.cpp
index 6ad900741..5205c42e2 100644
--- a/src/modules/http/httpfiletransfer.cpp
+++ b/src/modules/http/httpfiletransfer.cpp
@@ -419,9 +419,9 @@ void KviHttpFileTransfer::transferTerminated(bool bSuccess)
m_tTransferEndTime = kvi_unixTime();
KviKvsVariantList vParams;
- vParams.append(new KviKvsVariant(bSuccess));
- vParams.append(new KviKvsVariant(m_pHttpRequest->url().url()));
- vParams.append(new KviKvsVariant(m_pHttpRequest->fileName()));
+ vParams.append(bSuccess);
+ vParams.append(new KviKvsVariant(m_pHttpRequest->url().url(), true));
+ vParams.append(new KviKvsVariant(m_pHttpRequest->fileName(), true));
vParams.append(new KviKvsVariant(m_vMagicIdentifier));
if(m_szCompletionCallback.isNull())