Disable retrieving the vqd, as it seems to break things
This commit is contained in:
parent
146ea25974
commit
f0d3ef36e2
|
@ -76,10 +76,11 @@ 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> {
|
||||||
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())
|
Some((&self.last_vqd).into())
|
||||||
} else {
|
} else {
|
||||||
None
|
None
|
||||||
}
|
} */
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue