[SCM] kdeconnect packaging branch, master, updated. debian/0.9g-1-1183-g9d69498

Maximiliano Curia maxy at moszumanska.debian.org
Fri Oct 14 14:29:00 UTC 2016


Gitweb-URL: http://git.debian.org/?p=pkg-kde/kde-extras/kdeconnect.git;a=commitdiff;h=32daa4e

The following commit has been merged in the master branch:
commit 32daa4e51f960ea0bf8f1f014ccc98570f0209c6
Author: Aleix Pol <aleixpol at kde.org>
Date:   Wed Sep 9 13:42:28 2015 +0200

    Fix misbehaviour
    
    Delete devices, not links
---
 core/daemon.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/daemon.cpp b/core/daemon.cpp
index 8c44c72..81084c2 100644
--- a/core/daemon.cpp
+++ b/core/daemon.cpp
@@ -166,7 +166,7 @@ void Daemon::onNewDeviceLink(const NetworkPackage& identityPackage, DeviceLink*
         //we discard the connections that we created but it's not paired.
         //we keep the remotely initiated ones, since the remotes require them
         if (!isDiscoveryEnabled() && !device->isPaired() && dl->connectionSource() == DeviceLink::ConnectionStarted::Locally) {
-            dl->deleteLater();
+            device->deleteLater();
         } else {
             connect(device, SIGNAL(reachableStatusChanged()), this, SLOT(onDeviceStatusChanged()));
             connect(device, SIGNAL(pairingChanged(bool)), this, SLOT(onDeviceStatusChanged()));

-- 
kdeconnect packaging



More information about the pkg-kde-commits mailing list