From b2d3edca814e7c8df33ef5cd10f0662d4ba2cc65 Mon Sep 17 00:00:00 2001 From: advplyr Date: Fri, 20 Jan 2023 16:22:00 -0600 Subject: [PATCH] Update:Android hide download notification when finished #495 --- .../main/java/com/audiobookshelf/app/plugins/AbsDownloader.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }