2
0
mirror of https://github.com/KDE/kdeconnect-android synced 2025-09-02 15:15:09 +00:00

Fix crash when trying to stop stfp while it was mounted

This commit is contained in:
Albert Vaca
2017-06-21 03:04:22 +02:00
parent 70a94a7e1d
commit c18dc3b724

View File

@@ -125,7 +125,7 @@ class SimpleSftpServer {
public void stop() { public void stop() {
try { try {
started = false; started = false;
sshd.stop(); sshd.stop(true);
} catch (Exception e) { } catch (Exception e) {
e.printStackTrace(); e.printStackTrace();
} }