mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-10 15:17:48 +01:00
Only alert once for backup/restore progress notifications
This commit is contained in:
parent
abf47deee3
commit
bd45cc2024
1 changed files with 2 additions and 0 deletions
|
@ -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()) {
|
||||
|
|
Loading…
Reference in a new issue