From 39589434bda7316ecc9a4d02aa97af73451b292d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=80lex=20Fiestas?= Date: Mon, 3 Mar 2014 21:11:32 +0100 Subject: [PATCH] Set the deviceName from SharePlugin --- kded/plugins/share/shareplugin.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/kded/plugins/share/shareplugin.cpp b/kded/plugins/share/shareplugin.cpp index 351da76b9..00ccac937 100644 --- a/kded/plugins/share/shareplugin.cpp +++ b/kded/plugins/share/shareplugin.cpp @@ -91,6 +91,7 @@ bool SharePlugin::receivePackage(const NetworkPackage& np) KUrl destination = destinationDir(); destination.addPath(filename); FileTransferJob* job = np.createPayloadTransferJob(destination); + job->setDeviceName(device()->name()); connect(job, SIGNAL(result(KJob*)), this, SLOT(finished(KJob*))); KIO::getJobTracker()->registerJob(job); job->start();