Simplified the download notification

This commit is contained in:
shantanu1k 2022-10-22 14:59:33 +05:30
parent 441087d871
commit 234ca8c08f

View File

@ -48,7 +48,7 @@ class DownloadService : Service() {
}
if (downloadType != DownloadType.NONE) {
downloadManager()
downloadManager(videoName)
} else {
onDestroy()
}
@ -60,7 +60,7 @@ class DownloadService : Service() {
TODO("Not yet implemented")
}
private fun downloadManager() {
private fun downloadManager(videoName: String) {
// initialize and create the directories to download into
val videoDownloadDir = DownloadHelper.getVideoDir(this)
@ -74,7 +74,7 @@ class DownloadService : Service() {
)
if (downloadType in listOf(DownloadType.VIDEO, DownloadType.AUDIO_VIDEO)) {
videoDownloadId = downloadManagerRequest(
getString(R.string.video),
videoName,
getString(R.string.downloading),
videoUrl,
Uri.fromFile(
@ -82,9 +82,9 @@ class DownloadService : Service() {
)
)
}
if (downloadType in listOf(DownloadType.AUDIO, DownloadType.AUDIO_VIDEO)) {
else if (downloadType in listOf(DownloadType.AUDIO, DownloadType.AUDIO_VIDEO)) {
audioDownloadId = downloadManagerRequest(
getString(R.string.audio),
videoName,
getString(R.string.downloading),
audioUrl,
Uri.fromFile(