2
0
mirror of https://github.com/KDE/kdeconnect-android synced 2025-09-01 22:55:10 +00:00

Fixed bug that made file transfers not work.

The socket was not initialized for SSL when it should.
This commit is contained in:
Albert Vaca
2016-06-07 00:28:37 +02:00
parent 728fa0b508
commit 44be314899

View File

@@ -74,6 +74,7 @@ public class LanLink extends BaseLink {
Channel oldChannel = this.channel; Channel oldChannel = this.channel;
this.channel = channel; this.channel = channel;
this.connectionSource = connectionSource; this.connectionSource = connectionSource;
this.onSsl = onSsl;
return oldChannel; return oldChannel;
} }