소스 검색

Only alert once for backup/restore progress notifications

arkon 4 년 전
부모
커밋
bd45cc2024
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      app/src/main/java/eu/kanade/tachiyomi/data/backup/BackupNotifier.kt

+ 2 - 0
app/src/main/java/eu/kanade/tachiyomi/data/backup/BackupNotifier.kt

@@ -41,6 +41,7 @@ internal class BackupNotifier(private val context: Context) {
             setContentTitle(context.getString(R.string.creating_backup))
 
             setProgress(0, 0, true)
+            setOnlyAlertOnce(true)
         }
 
         builder.show(Notifications.ID_BACKUP_PROGRESS)
@@ -93,6 +94,7 @@ internal class BackupNotifier(private val context: Context) {
             }
 
             setProgress(maxAmount, progress, false)
+            setOnlyAlertOnce(true)
 
             // Clear old actions if they exist
             if (mActions.isNotEmpty()) {