changed Date to u8 array

This commit is contained in:
Philipp_EndevourOS
2025-10-04 15:45:56 +02:00
parent db7e22f45d
commit 09f21403ec
3 changed files with 9 additions and 8 deletions

View File

@@ -83,10 +83,10 @@ impl Persistence for SDCardPersistence {
let mut root_dir = vol_0.open_root_dir().unwrap();
let mut days_dir = root_dir.open_dir("days").unwrap();
let mut days = Vec::new();
let mut days: Vec<[u8; 10]> = Vec::new();
days_dir
.iterate_dir(|e| {
days.push(1);
days.push([0; 10]);
})
.unwrap();