2
0
mirror of https://github.com/KDE/kdeconnect-android synced 2025-10-13 13:57:57 +00:00

Fixes to the new sendPackage logic

This commit is contained in:
Albert Vaca
2015-01-31 00:28:27 -08:00
parent bda6e3cb7f
commit 3d415c5959
5 changed files with 39 additions and 9 deletions

View File

@@ -47,7 +47,7 @@ public class LoopbackLink extends BaseLink {
String s = in.serialize();
NetworkPackage out= NetworkPackage.unserialize(s);
if (key != null) {
out.decrypt(privateKey);
out = out.decrypt(privateKey);
}
packageReceived(out);
if (in.hasPayload()) {