From 89d205e9469114e045d8bbbd3b63e5f9d0102021 Mon Sep 17 00:00:00 2001 From: veeso Date: Sun, 20 Jun 2021 11:03:55 +0200 Subject: [PATCH] Fixed UI not showing connection error --- CHANGELOG.md | 1 + src/ui/activities/filetransfer/session.rs | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6717d09..13a0aa8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -35,6 +35,7 @@ Released on 21/06/2021 - If the terminal window has less than 24 lines, then an error message is displayed in the auth activity - Changed auth layout to absolute sizes - Bugfix: + - Fixed UI not showing connection errors - Fixed termscp on Windows dying whenever opening a file with text editor - Fixed broken input cursor when typing UTF8 characters (tui-realm 0.3.2) - Fixed [Issue 44](https://github.com/veeso/termscp/issues/44): Could not move files to other paths in FTP diff --git a/src/ui/activities/filetransfer/session.rs b/src/ui/activities/filetransfer/session.rs index 855ca5b..ce12513 100644 --- a/src/ui/activities/filetransfer/session.rs +++ b/src/ui/activities/filetransfer/session.rs @@ -117,6 +117,7 @@ impl FileTransferActivity { } Err(err) => { // Set popup fatal error + self.umount_wait(); self.mount_fatal(&err.to_string()); } }