Fix out-of-range move commands

This commit is contained in:
Joscha 2021-12-12 19:09:38 +00:00
parent 240becd28d
commit 6f1a533b95
4 changed files with 39 additions and 3 deletions

View file

@ -25,8 +25,8 @@ pub fn run() -> anyhow::Result<()> {
let now = files.now().naive_local();
let range = DateRange::new(
NaiveDate::from_ymd(2021, 1, 1),
NaiveDate::from_ymd(2022, 12, 31),
NaiveDate::from_ymd(2021, 12, 12 - 3),
NaiveDate::from_ymd(2021, 12, 12 + 13),
)
.unwrap();