ok my bad
This commit is contained in:
parent
994863aed8
commit
910ab614cd
1 changed files with 9 additions and 9 deletions
|
@ -116,13 +116,13 @@ pub async fn take_one_screenshot(
|
|||
let zone = tzfile::Tz::named("GMT")?;
|
||||
let now = { chrono::Utc::now().with_timezone(&&zone) };
|
||||
|
||||
let file_path =
|
||||
root_path.join(&node_name_clone).join(format!(
|
||||
"{:02}-{:02}-{:02}.webp",
|
||||
now.hour(),
|
||||
now.minute(),
|
||||
now.second()
|
||||
));
|
||||
let id_path = root_path.join(&node_name_clone);
|
||||
let file_path = id_path.join(format!(
|
||||
"{:02}-{:02}-{:02}.webp",
|
||||
now.hour(),
|
||||
now.minute(),
|
||||
now.second()
|
||||
));
|
||||
|
||||
let file_path_clone = file_path.clone();
|
||||
|
||||
|
@ -151,8 +151,8 @@ pub async fn take_one_screenshot(
|
|||
let encoder = webp::Encoder::from_image(&image)
|
||||
.expect("fuck you");
|
||||
|
||||
if !root_path.exists() {
|
||||
std::fs::create_dir_all(&root_path)?;
|
||||
if !id_path.exists() {
|
||||
std::fs::create_dir_all(&id_path)?;
|
||||
}
|
||||
|
||||
let mut file =
|
||||
|
|
Loading…
Reference in a new issue