Remove commented code in `get_last_vqd`.

This commit is contained in:
aa0 2024-08-05 06:54:25 +01:00 committed by GitHub
parent c49bbd2692
commit ffa2bc9bd2
Failed to generate hash of commit
1 changed files with 0 additions and 5 deletions

View File

@ -77,10 +77,5 @@ impl Cache {
pub fn get_last_vqd<'a, T: From<&'a String>>(self: &'a Self) -> Option<T> { pub fn get_last_vqd<'a, T: From<&'a String>>(self: &'a Self) -> Option<T> {
None None
/*if self.last_vqd_time - (chrono::Local::now().timestamp_millis() as u64) < 60000 {
Some((&self.last_vqd).into())
} else {
None
} */
} }
} }