mirror of
https://git.asonix.dog/asonix/pict-rs
synced 2024-11-10 06:25:00 +00:00
Replace 'move' with 'copy+delete'
This commit is contained in:
parent
d025fbff21
commit
928fb8f277
1 changed files with 2 additions and 1 deletions
|
@ -668,7 +668,8 @@ async fn safe_move_file(from: PathBuf, to: PathBuf) -> Result<(), UploadError> {
|
||||||
}
|
}
|
||||||
|
|
||||||
debug!("Moving {:?} to {:?}", from, to);
|
debug!("Moving {:?} to {:?}", from, to);
|
||||||
actix_fs::rename(from, to).await?;
|
actix_fs::copy(from.clone(), to).await?;
|
||||||
|
actix_fs::remove_file(from).await?;
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue