fix: exit the notifications applet if the daemon is unavailable
This commit is contained in:
parent
78e108ed7e
commit
2d54688a73
1 changed files with 2 additions and 1 deletions
|
|
@ -63,7 +63,8 @@ pub fn notifications(proxy: NotificationsAppletProxy<'static>) -> Subscription<O
|
||||||
fail_count = fail_count.saturating_add(1);
|
fail_count = fail_count.saturating_add(1);
|
||||||
if fail_count > 5 {
|
if fail_count > 5 {
|
||||||
error!("Failed to receive notification events");
|
error!("Failed to receive notification events");
|
||||||
_ = pending::<()>();
|
// exit because the applet needs the notifications daemon in order to work properly
|
||||||
|
std::process::exit(0);
|
||||||
} else {
|
} else {
|
||||||
tokio::time::sleep(std::time::Duration::from_secs(1)).await;
|
tokio::time::sleep(std::time::Duration::from_secs(1)).await;
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue