Notification: fixed persistent DND toast.

This commit is contained in:
LemmyCook 2025-09-05 21:04:02 -04:00
parent 90cd5467fe
commit 39c7089cbc
3 changed files with 3 additions and 3 deletions

View file

@ -112,7 +112,7 @@ Singleton {
function onDoNotDisturbChanged() {
const label = Settings.data.notifications.doNotDisturb ? "'Do Not Disturb' enabled" : "'Do Not Disturb' disabled"
const description = Settings.data.notifications.doNotDisturb ? "You'll find these notifications in your history." : "Showing all notifications."
ToastService.showNotice(label, description, "notice", false, 2000)
ToastService.showNotice(label, description)
}
}