1
0
Fork 0

Only show progress notification for successful backup

This commit is contained in:
Torsten Grote 2024-07-03 11:25:03 -03:00
parent 1543dccd96
commit e07e043ab9
No known key found for this signature in database
GPG key ID: 3E5F77D92CF891FF

View file

@ -108,8 +108,10 @@ internal class NotificationBackupObserver(
null // To not disable apps by mistake, we reset it when getting a new non-error result.
}
// often [onResult] gets called right away without any [onUpdate] call
showProgressNotification(target)
// Often [onResult] gets called right away without any [onUpdate] call,
// so we show progress notification here as well.
// However, only do it on success, to prevent a race causing stuck notifications
if (status == 0) showProgressNotification(target)
}
/**