Ver código fonte

Fix backup/restore notification channel

arkon 5 anos atrás
pai
commit
d8e7481118

+ 6 - 3
app/src/main/java/eu/kanade/tachiyomi/data/notification/Notifications.kt

@@ -48,7 +48,7 @@ object Notifications {
     /**
      * Notification channel and ids used by the backup/restore system.
      */
-    const val CHANNEL_BACKUP = "backup_channel"
+    const val CHANNEL_BACKUP_RESTORE = "backup_restore_channel"
     const val ID_BACKUP = -501
 
     /**
@@ -73,8 +73,11 @@ object Notifications {
                 NotificationChannel(CHANNEL_NEW_CHAPTERS, context.getString(R.string.channel_new_chapters),
                         NotificationManager.IMPORTANCE_DEFAULT),
                 NotificationChannel(CHANNEL_UPDATES_TO_EXTS, context.getString(R.string.channel_ext_updates),
-                        NotificationManager.IMPORTANCE_DEFAULT
-        )
+                        NotificationManager.IMPORTANCE_DEFAULT),
+                NotificationChannel(CHANNEL_BACKUP_RESTORE, context.getString(R.string.channel_backup_restore),
+                    NotificationManager.IMPORTANCE_LOW).apply {
+                    setShowBadge(false)
+                }
         )
         context.notificationManager.createNotificationChannels(channels)
     }

+ 1 - 1
app/src/main/java/eu/kanade/tachiyomi/ui/setting/backup/BackupNotifier.kt

@@ -10,7 +10,7 @@ import eu.kanade.tachiyomi.util.system.notificationManager
 
 internal class BackupNotifier(private val context: Context) {
 
-    private val notificationBuilder = context.notificationBuilder(Notifications.CHANNEL_DOWNLOADER) {
+    private val notificationBuilder = context.notificationBuilder(Notifications.CHANNEL_BACKUP_RESTORE) {
         setLargeIcon(BitmapFactory.decodeResource(context.resources, R.mipmap.ic_launcher))
     }
 

+ 1 - 0
app/src/main/res/values/strings.xml

@@ -610,5 +610,6 @@
     <string name="channel_downloader">Downloader</string>
     <string name="channel_new_chapters">Chapter updates</string>
     <string name="channel_ext_updates">Extension updates</string>
+    <string name="channel_backup_restore">Backup and restore</string>
 
 </resources>