Skip to content

Commit

Permalink
Revert "Use app names in notiication speech (#142)"
Browse files Browse the repository at this point in the history
This reverts commit fa09dab.
  • Loading branch information
TTWNO committed Apr 26, 2024
1 parent b650869 commit a6d1a73
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.app_name, notification.title, notification.body);
format!("new notification: {}, {}.", notification.title, notification.body);
state.say(Priority::Important, notification_message).await;
},
() = shutdown.cancelled() => {
Expand Down

0 comments on commit a6d1a73

Please sign in to comment.