Fix update warning notifications being cut off (fixes #6983)

This commit is contained in:
arkon
2022-04-24 15:35:05 -04:00
parent 883945e3e8
commit 20145f7a12
2 changed files with 2 additions and 2 deletions
@@ -190,7 +190,7 @@ internal class DownloadNotifier(private val context: Context) {
fun onWarning(reason: String, timeout: Long? = null) {
with(errorNotificationBuilder) {
setContentTitle(context.getString(R.string.download_notifier_downloader_title))
setContentText(reason)
setStyle(NotificationCompat.BigTextStyle().bigText(reason))
setSmallIcon(R.drawable.ic_warning_white_24dp)
setAutoCancel(true)
clearActions()