2
0
mirror of https://github.com/KDE/kdeconnect-android synced 2025-08-31 06:05:12 +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() {
try {
started = false;
sshd.stop();
sshd.stop(true);
} catch (Exception e) {
e.printStackTrace();
}