mirror of
https://github.com/SinTan1729/movie-rename.git
synced 2024-12-26 12:18:37 -06:00
change: Use String::new() everywhere
This commit is contained in:
parent
21b26cf4e1
commit
9456009b4d
1 changed files with 5 additions and 5 deletions
|
@ -29,7 +29,7 @@ pub async fn process_file(
|
||||||
|
|
||||||
// Get the basename
|
// Get the basename
|
||||||
let mut file_base = String::from(filename);
|
let mut file_base = String::from(filename);
|
||||||
let mut parent = String::from("");
|
let mut parent = String::new();
|
||||||
if let Some(parts) = filename.rsplit_once('/') {
|
if let Some(parts) = filename.rsplit_once('/') {
|
||||||
{
|
{
|
||||||
parent = parts.0.to_string();
|
parent = parts.0.to_string();
|
||||||
|
@ -63,7 +63,7 @@ pub async fn process_file(
|
||||||
// Check if it should be ignored
|
// Check if it should be ignored
|
||||||
if preprocessed && new_name_base.is_empty() {
|
if preprocessed && new_name_base.is_empty() {
|
||||||
eprintln!(" Ignoring {file_base} as per previous choice for related files...");
|
eprintln!(" Ignoring {file_base} as per previous choice for related files...");
|
||||||
return (filename_without_ext, "".to_string(), false);
|
return (filename_without_ext, String::new(), false);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Parse the filename for metadata
|
// Parse the filename for metadata
|
||||||
|
@ -75,7 +75,7 @@ pub async fn process_file(
|
||||||
println!(" Processing {file_base}...");
|
println!(" Processing {file_base}...");
|
||||||
} else {
|
} else {
|
||||||
println!(" Ignoring {file_base}...");
|
println!(" Ignoring {file_base}...");
|
||||||
return (filename_without_ext, "".to_string(), false);
|
return (filename_without_ext, String::new(), false);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Only do the TMDb API stuff if it's not preprocessed
|
// Only do the TMDb API stuff if it's not preprocessed
|
||||||
|
@ -124,7 +124,7 @@ pub async fn process_file(
|
||||||
// If nothing is found, skip
|
// If nothing is found, skip
|
||||||
if movie_list.is_empty() {
|
if movie_list.is_empty() {
|
||||||
eprintln!(" Could not find any entries matching {file_base}!");
|
eprintln!(" Could not find any entries matching {file_base}!");
|
||||||
return (filename_without_ext, "".to_string(), true);
|
return (filename_without_ext, String::new(), true);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Choose from the possible entries
|
// Choose from the possible entries
|
||||||
|
@ -141,7 +141,7 @@ pub async fn process_file(
|
||||||
error,
|
error,
|
||||||
InquireError::OperationCanceled | InquireError::OperationInterrupted
|
InquireError::OperationCanceled | InquireError::OperationInterrupted
|
||||||
);
|
);
|
||||||
return (filename_without_ext, "".to_string(), flag);
|
return (filename_without_ext, String::new(), flag);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue