Skip to content

Commit

Permalink
Fix title of restore notification channel
Browse files Browse the repository at this point in the history
The restore foreground service notification uses the restore channel, which was inadvertently using the title from the error channel, showing "Auto restore flash drive error" when tapping and holding on the notification, and showing that channel name twice in the notification settings.
  • Loading branch information
t-m-w authored Oct 3, 2024
1 parent f2aec3f commit a27ef47
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ internal class BackupNotificationManager(private val context: Context) {
}

private fun getRestoreChannel(): NotificationChannel {
val title = context.getString(R.string.notification_restore_error_channel_title)
val title = context.getString(R.string.notification_restore_channel_title)
return NotificationChannel(CHANNEL_ID_RESTORE, title, IMPORTANCE_LOW)
}

Expand Down

0 comments on commit a27ef47

Please sign in to comment.