Merge pull request #767 from t-m-w/fix-title-of-restore-notification-channel

Fix title of restore notification channel
This commit is contained in:
Torsten Grote 2024-10-04 09:30:09 -03:00 committed by GitHub
commit 5f8e85944a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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)
}