2
0
mirror of https://github.com/KDE/kdeconnect-android synced 2025-08-30 21:55:10 +00:00

OOPS! used device name instead of link name in lan pairing handler

This commit is contained in:
Vineet Garg
2015-08-17 23:24:58 +05:30
parent 50fcea2cd9
commit cf4b840509

View File

@@ -68,7 +68,7 @@ public class LanPairingHandler extends BasePairingHandler {
@Override
public void packageReceived(NetworkPackage np) throws Exception{
if (!np.getString("link", mDevice.getName()).equals(mBaseLink.getName())) {
if (!np.getString("link", mBaseLink.getName()).equals(mBaseLink.getName())) {
return;
}