diff --git a/odilia/src/main.rs b/odilia/src/main.rs index 53f6f442..4c96d1be 100644 --- a/odilia/src/main.rs +++ b/odilia/src/main.rs @@ -40,7 +40,7 @@ async fn notifications_monitor( tokio::select! { Some(notification) = stream.next() => { let notification_message = - format!("new notification: {}, {}.", notification.title, notification.body); + format!("new notification: {}, {}, {}.", notification.app_name, notification.title, notification.body); state.say(Priority::Important, notification_message).await; }, () = shutdown.cancelled() => {