cleaner-code #89

Merged
philipp merged 3 commits from cleaner-code into staging 2023-11-27 12:51:01 +01:00
Showing only changes of commit 99fb9c624d - Show all commits

View File

@ -141,7 +141,7 @@ ORDER BY day;",
.fetch_one(db)
.await
.unwrap();
if is_cox.amount.unwrap() > 0 {
if is_cox.amount > 0 {
return CoxAtTrip::Yes(Action::Helping);
}