Fix string key typo

This commit is contained in:
arkon
2020-04-18 14:25:29 -04:00
parent fd733e819d
commit 31b94fd3ff
36 changed files with 36 additions and 36 deletions

View File

@ -175,7 +175,7 @@ internal class DownloadNotifier(private val context: Context) {
with(notificationBuilder) {
setContentTitle(chapter
?: context.getString(R.string.download_notifier_downloader_title))
setContentText(error ?: context.getString(R.string.download_notifier_unkown_error))
setContentText(error ?: context.getString(R.string.download_notifier_unknown_error))
setSmallIcon(android.R.drawable.stat_sys_warning)
clearActions()
setAutoCancel(false)