We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 373954c commit 60930beCopy full SHA for 60930be
1 file changed
czkawka_cli/src/progress.rs
@@ -51,7 +51,7 @@ pub fn connect_progress(progress_receiver: &Receiver<ProgressData>) {
51
}
52
53
54
- pb.finish();
+ pb.finish_and_clear();
55
56
57
pub fn get_progress_message(progress_data: &ProgressData) -> String {
@@ -67,7 +67,7 @@ pub fn get_progress_message(progress_data: &ProgressData) -> String {
67
CurrentStage::SimilarVideosCalculatingHashes => "Reading similar values",
68
CurrentStage::BrokenFilesChecking => "Checking broken files",
69
CurrentStage::BadExtensionsChecking => "Checking extensions of files",
70
- _ => panic!("Unknown stage {:?}", progress_data.sstage),
+ _ => panic!("Unsupported stage {:?}", progress_data.sstage),
71
72
.to_string()
73
0 commit comments