Fixed: When copying files with tricky copy, the upper progress bar shows no text

This commit is contained in:
veeso
2021-08-23 14:56:27 +02:00
parent 7713c6c21d
commit b7b765c16e
@@ -144,6 +144,8 @@ impl FileTransferActivity {
/// ///
/// Tricky copy will be used whenever copy command is not available on remote host /// Tricky copy will be used whenever copy command is not available on remote host
fn tricky_copy(&mut self, entry: FsEntry, dest: &Path) { fn tricky_copy(&mut self, entry: FsEntry, dest: &Path) {
// NOTE: VERY IMPORTANT; wait block must be umounted or something really bad will happen
self.umount_wait();
// match entry // match entry
match entry { match entry {
FsEntry::File(entry) => { FsEntry::File(entry) => {