From 7decb9596383a218f07ecb38fbfc2fddffadd462 Mon Sep 17 00:00:00 2001 From: Syer10 Date: Tue, 8 Nov 2022 21:18:51 -0500 Subject: [PATCH] Fix notification priorities --- .../ca/gosyer/jui/android/data/notification/Notifications.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/android/src/main/kotlin/ca/gosyer/jui/android/data/notification/Notifications.kt b/android/src/main/kotlin/ca/gosyer/jui/android/data/notification/Notifications.kt index 92c6f4ac..839d7617 100644 --- a/android/src/main/kotlin/ca/gosyer/jui/android/data/notification/Notifications.kt +++ b/android/src/main/kotlin/ca/gosyer/jui/android/data/notification/Notifications.kt @@ -71,7 +71,7 @@ object Notifications { }, buildNotificationChannel( CHANNEL_DOWNLOADER_DOWNLOADING, - NotificationManagerCompat.IMPORTANCE_DEFAULT + NotificationManagerCompat.IMPORTANCE_LOW ) { setName(MR.strings.channel_progress.desc().toString(context)) setGroup(GROUP_DOWNLOADER) @@ -79,7 +79,7 @@ object Notifications { }, buildNotificationChannel( CHANNEL_LIBRARY_UPDATES, - NotificationManagerCompat.IMPORTANCE_DEFAULT + NotificationManagerCompat.IMPORTANCE_LOW ) { setName(MR.strings.channel_active.desc().toString(context)) setGroup(GROUP_LIBRARY)