diff --git a/android/app/src/main/java/com/audiobookshelf/app/plugins/AbsDownloader.kt b/android/app/src/main/java/com/audiobookshelf/app/plugins/AbsDownloader.kt index 53a5a2fc..78c45d3f 100644 --- a/android/app/src/main/java/com/audiobookshelf/app/plugins/AbsDownloader.kt +++ b/android/app/src/main/java/com/audiobookshelf/app/plugins/AbsDownloader.kt @@ -95,7 +95,7 @@ class AbsDownloader : Plugin() { val dlRequest = DownloadManager.Request(uri) dlRequest.setTitle(filename) dlRequest.setDescription("Downloading to $localFolderName for book $itemTitle") - dlRequest.setNotificationVisibility(DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED) + dlRequest.setNotificationVisibility(DownloadManager.Request.VISIBILITY_VISIBLE) dlRequest.setDestinationUri(destinationUri) return dlRequest }