Skip to content

Commit

Permalink
Use app names in notiication speech
Browse files Browse the repository at this point in the history
  • Loading branch information
TTWNO committed Mar 20, 2024
1 parent b77a72d commit 8bbda99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion odilia/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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() => {
Expand Down

0 comments on commit 8bbda99

Please sign in to comment.