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

View File

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

View File

@ -93,7 +93,7 @@ class LibraryUpdateNotifier(private val context: Context) {
fun showQueueSizeWarningNotification() {
val notificationBuilder = context.notificationBuilder(Notifications.CHANNEL_LIBRARY_PROGRESS) {
setContentTitle(context.getString(R.string.label_warning))
setContentText(context.getString(R.string.notification_size_warning))
setStyle(NotificationCompat.BigTextStyle().bigText(context.getString(R.string.notification_size_warning)))
setSmallIcon(R.drawable.ic_warning_white_24dp)
setTimeoutAfter(Downloader.WARNING_NOTIF_TIMEOUT_MS)
}