Use less zero-y timestamp

This commit is contained in:
Olivier 'reivilibre
2025-11-06 15:33:31 +00:00
parent 6f583e18bf
commit 83844bc723

View File

@@ -67,7 +67,7 @@ impl Options {
.map_err(anyhow::Error::from_boxed)?;
let now = if stabilise {
DateTime::from_timestamp_secs(0).unwrap()
DateTime::from_timestamp_secs(1_446_823_992).unwrap()
} else {
SystemClock::default().now()
};