chore: rework backup success notification descriptions (#23024)

* chore: rework backup success notification descriptions

* chore: use static text until for completion description
This commit is contained in:
Brandon Wees
2025-10-20 09:56:48 -05:00
committed by GitHub
parent a390e44402
commit 24fe62ff9d
2 changed files with 3 additions and 2 deletions

View File

@@ -43,14 +43,14 @@ void configureFileDownloaderNotifications() {
FileDownloader().configureNotificationForGroup(
kManualUploadGroup,
running: TaskNotification('uploading_media'.t(), 'backup_background_service_in_progress_notification'.t()),
complete: TaskNotification('upload_finished'.t(), 'backup_background_service_in_progress_notification'.t()),
complete: TaskNotification('upload_finished'.t(), 'backup_background_service_complete_notification'.t()),
groupNotificationId: kManualUploadGroup,
);
FileDownloader().configureNotificationForGroup(
kBackupGroup,
running: TaskNotification('uploading_media'.t(), 'backup_background_service_in_progress_notification'.t()),
complete: TaskNotification('upload_finished'.t(), 'backup_background_service_in_progress_notification'.t()),
complete: TaskNotification('upload_finished'.t(), 'backup_background_service_complete_notification'.t()),
groupNotificationId: kBackupGroup,
);
}