Skip to content

Commit

Permalink
Use app names in notiication speech (#142)
Browse files Browse the repository at this point in the history
  • Loading branch information
TTWNO authored Apr 6, 2024
1 parent 8320631 commit fa09dab
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 @@ -44,7 +44,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 fa09dab

Please sign in to comment.