2
0
mirror of https://github.com/KDE/kdeconnect-android synced 2025-09-01 22:55:10 +00:00
This commit is contained in:
Albert Vaca
2016-12-05 21:52:18 +01:00
parent 22dde07892
commit 22de200cbf

View File

@@ -171,9 +171,9 @@ public class LanLink extends BaseLink {
//Send body of the network package //Send body of the network package
try { try {
OutputStream writter = socket.getOutputStream(); OutputStream writer = socket.getOutputStream();
writter.write(np.serialize().getBytes(StringsHelper.UTF8)); writer.write(np.serialize().getBytes(StringsHelper.UTF8));
writter.flush(); writer.flush();
} catch (Exception e) { } catch (Exception e) {
callback.sendFailure(e); callback.sendFailure(e);
e.printStackTrace(); e.printStackTrace();