ok my bad

This commit is contained in:
Lily Tsuru 2024-09-30 07:13:08 -04:00
parent 994863aed8
commit 910ab614cd

View file

@ -116,8 +116,8 @@ 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!(
let id_path = root_path.join(&node_name_clone);
let file_path = id_path.join(format!(
"{:02}-{:02}-{:02}.webp",
now.hour(),
now.minute(),
@ -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 =