removed a debug print

This commit is contained in:
Zastian Pretorius
2023-01-17 15:42:43 +00:00
parent 97fe7e30a7
commit f435f290ac

View File

@@ -264,7 +264,6 @@ pub fn get_an_history() -> (Vec<String>, Vec<String>, Vec<String>) {
titles.push(key.to_string());
links.push(value["link"].as_str().unwrap().to_string());
images.push(value["image"].as_str().unwrap().to_string());
println!("{}", value["updated"].as_u64().unwrap());
last_updated.push(value["updated"].as_u64().unwrap());
}
let mut indices: Vec<usize> = (0..last_updated.len()).collect();