Disable retrieving the vqd, as it seems to break things

This commit is contained in:
Ahmad-A0 2024-08-04 02:12:50 +01:00
parent 146ea25974
commit f0d3ef36e2
1 changed files with 4 additions and 3 deletions

View File

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