|
@@ -186,9 +186,9 @@ internal class DownloadNotifier(private val context: Context) {
|
|
|
*/
|
|
|
fun onWarning(reason: String) {
|
|
|
with(errorNotificationBuilder) {
|
|
|
- setContentTitle(context.getString(R.string.download_notifier_downloader_title))
|
|
|
- setContentText(reason)
|
|
|
- setSmallIcon(android.R.drawable.stat_sys_warning)
|
|
|
+ setContentTitle(context.getString(R.string.label_warning))
|
|
|
+ setStyle(NotificationCompat.BigTextStyle().bigText(reason))
|
|
|
+ setSmallIcon(R.drawable.ic_warning_white_24dp)
|
|
|
setAutoCancel(true)
|
|
|
clearActions()
|
|
|
setContentIntent(NotificationHandler.openDownloadManagerPendingActivity(context))
|
|
@@ -216,7 +216,7 @@ internal class DownloadNotifier(private val context: Context) {
|
|
|
?: context.getString(R.string.download_notifier_downloader_title)
|
|
|
)
|
|
|
setContentText(error ?: context.getString(R.string.download_notifier_unknown_error))
|
|
|
- setSmallIcon(android.R.drawable.stat_sys_warning)
|
|
|
+ setSmallIcon(R.drawable.ic_warning_white_24dp)
|
|
|
clearActions()
|
|
|
setContentIntent(NotificationHandler.openDownloadManagerPendingActivity(context))
|
|
|
setProgress(0, 0, false)
|