summaryrefslogtreecommitdiffstats
path: root/src/commands/file_ops/paste_copy.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/file_ops/paste_copy.rs')
-rw-r--r--src/commands/file_ops/paste_copy.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/file_ops/paste_copy.rs b/src/commands/file_ops/paste_copy.rs
index 943e14f..3a430d1 100644
--- a/src/commands/file_ops/paste_copy.rs
+++ b/src/commands/file_ops/paste_copy.rs
@@ -55,7 +55,7 @@ pub fn paste_copy(
rx_start.recv();
for path in paths {
total += recursive_copy(thread_dest.as_path(), path.as_path(), &options)?;
- tx.send(Event::IOWorkerProgress(total));
+ tx.send(total);
}
Ok(total)
});