Added SKREEE
parent
0752877345
commit
f8caf62101
|
@ -101,7 +101,7 @@ fn backup_region(
|
||||||
let file_name = entry.file_name().to_str().unwrap().to_string();
|
let file_name = entry.file_name().to_str().unwrap().to_string();
|
||||||
|
|
||||||
if let Some(region) = Region::from_string(file_name) {
|
if let Some(region) = Region::from_string(file_name) {
|
||||||
if region.x.abs() < save_radius && region.y.abs() < save_radius {
|
if region.x.abs() <= save_radius && region.y.abs() <= save_radius {
|
||||||
let mut target = backup_dir.clone();
|
let mut target = backup_dir.clone();
|
||||||
target.push(entry.file_name());
|
target.push(entry.file_name());
|
||||||
|
|
||||||
|
@ -345,7 +345,7 @@ fn do_backup(cfg: AlbatrossConfig) -> Result<(), std::io::Error> {
|
||||||
|
|
||||||
let secs = timer.elapsed().as_secs();
|
let secs = timer.elapsed().as_secs();
|
||||||
send_webhook(
|
send_webhook(
|
||||||
format!("**Full backup completed in {}s**!", secs).as_str(),
|
format!("**Full backup completed in {}s**! *SKREEEEEEEEEE*", secs).as_str(),
|
||||||
&cfg,
|
&cfg,
|
||||||
);
|
);
|
||||||
Ok(())
|
Ok(())
|
||||||
|
|
Loading…
Reference in New Issue