diff options
Diffstat (limited to 'src/gui/app.rs')
-rw-r--r-- | src/gui/app.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/app.rs b/src/gui/app.rs index c0fc038..e48c93a 100644 --- a/src/gui/app.rs +++ b/src/gui/app.rs @@ -44,7 +44,8 @@ impl App { let today = chrono::offset::Local::now().naive_utc().date(); // TODO: error handling let start_date = - NaiveDate::from_isoywd_opt(today.year(), today.iso_week().week(), Weekday::Mon).unwrap(); + NaiveDate::from_isoywd_opt(today.year(), today.iso_week().week(), Weekday::Mon) + .unwrap(); let end_date = start_date + Duration::days(7 * 4 - 1); let events = db::events::list_non_recurring_between(&conn, start_date, end_date)?; |