Update notification icons

Although no recent version of Android even shows these....
This commit is contained in:
arkon
2021-12-11 12:59:05 -05:00
parent 808177f8c9
commit ed4dea8686
4 changed files with 8 additions and 8 deletions

View File

@@ -103,7 +103,7 @@ class SaveImageNotifier(private val context: Context) {
with(notificationBuilder) {
setContentTitle(context.getString(R.string.download_notifier_title_error))
setContentText(error ?: context.getString(R.string.unknown_error))
setSmallIcon(android.R.drawable.ic_menu_report_image)
setSmallIcon(R.drawable.ic_error_outline_24dp)
}
updateNotification()
}