why no periods (Refactor comments)

This commit is contained in:
KingRainbow44
2022-05-22 23:50:19 -04:00
parent 4e24658272
commit 1562646806

View File

@@ -137,7 +137,7 @@ async fn get_bg_file(bg_path: String) -> String {
let file_name = response_data.bg_file.to_string(); let file_name = response_data.bg_file.to_string();
// First we see if the file already exists in our local bg folder // First we see if the file already exists in our local bg folder.
if file_helpers::dir_exists(format!(".\\bg\\{}", file_name).as_str()) { if file_helpers::dir_exists(format!(".\\bg\\{}", file_name).as_str()) {
let cwd = std::env::current_dir().unwrap(); let cwd = std::env::current_dir().unwrap();
return format!("{}\\{}", cwd.display(), response_data.bg_file.as_str()); return format!("{}\\{}", cwd.display(), response_data.bg_file.as_str());
@@ -151,18 +151,18 @@ async fn get_bg_file(bg_path: String) -> String {
return "".to_string(); return "".to_string();
} }
// BG folder does exist, lets see if the image exists // BG folder does exist, lets see if the image exists.
if !file_helpers::dir_exists(&bg_img_path) { if !file_helpers::dir_exists(&bg_img_path) {
// Image doesn't exist // Image doesn't exist
return "".to_string(); return "".to_string();
} }
// The image exists, lets copy it to our local \bg folder // The image exists, lets copy it to our local '\bg' folder.
let bg_img_path_local = format!(".\\bg\\{}", file_name.as_str()); let bg_img_path_local = format!(".\\bg\\{}", file_name.as_str());
return match std::fs::copy(bg_img_path, bg_img_path_local) { return match std::fs::copy(bg_img_path, bg_img_path_local) {
Ok(_) => { Ok(_) => {
// Copy was successful, lets return true // Copy was successful, lets return true.
let cwd = std::env::current_dir().unwrap(); let cwd = std::env::current_dir().unwrap();
format!("{}\\{}", cwd.display(), response_data.bg_file.as_str()) format!("{}\\{}", cwd.display(), response_data.bg_file.as_str())
} }