Revert download notification icon changes

This commit is contained in:
arkon
2021-12-12 11:14:47 -05:00
parent ecd5414287
commit 7f998ecdbd
5 changed files with 8 additions and 17 deletions
@@ -84,7 +84,7 @@ internal class DownloadNotifier(private val context: Context) {
fun onProgressChange(download: Download) {
with(progressNotificationBuilder) {
if (!isDownloading) {
setSmallIcon(R.drawable.ic_photo_24dp)
setSmallIcon(android.R.drawable.stat_sys_download)
clearActions()
// Open download manager when clicked
setContentIntent(NotificationHandler.openDownloadManagerPendingActivity(context))
@@ -165,7 +165,7 @@ internal class DownloadNotifier(private val context: Context) {
with(completeNotificationBuilder) {
setContentTitle(context.getString(R.string.download_notifier_downloader_title))
setContentText(context.getString(R.string.download_notifier_download_finish))
setSmallIcon(R.drawable.ic_download_24dp)
setSmallIcon(android.R.drawable.stat_sys_download_done)
clearActions()
setAutoCancel(true)
setContentIntent(NotificationHandler.openDownloadManagerPendingActivity(context))