Compare commits

...

2 Commits

Author SHA1 Message Date
99fb9c624d Merge pull request 'fix ci' (#87) from update-deps into main
All checks were successful
CI/CD Pipeline / test (push) Successful in 10m48s
CI/CD Pipeline / deploy-staging (push) Has been skipped
CI/CD Pipeline / deploy-main (push) Successful in 14m31s
Reviewed-on: #87
2023-11-27 11:58:49 +01:00
a2ca26fef3 fix ci
All checks were successful
CI/CD Pipeline / test (push) Successful in 11m8s
CI/CD Pipeline / deploy-staging (push) Has been skipped
CI/CD Pipeline / deploy-main (push) Has been skipped
2023-11-27 11:58:02 +01:00

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);
}