remove debug println; better phrasing

This commit is contained in:
2024-05-30 11:57:03 +02:00
parent e8d4672176
commit 2de4c86c26
3 changed files with 9 additions and 22 deletions

View File

@@ -223,10 +223,9 @@ WHERE day=?
.rower;
for user in rowers {
if let Some(user) = User::find_by_name(db, &user.name).await {
let notes = if let Some(notes) = update.notes {
format!("Grund der Absage: {notes}")
} else {
String::from("")
let notes = match update.notes {
Some(n) if !n.is_empty() => format!("Grund der Absage: {n}"),
_ => String::from(""),
};
Notification::create(