mirror of
https://github.com/libre-tube/LibreTube.git
synced 2025-04-29 16:30:31 +05:30
Fix notification content action to open download fragment
This commit is contained in:
parent
d62c50c2c6
commit
a38ef176ab
@ -325,10 +325,10 @@ class DownloadService : Service() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private fun getNotificationBuilder(item: DownloadItem): NotificationCompat.Builder {
|
private fun getNotificationBuilder(item: DownloadItem): NotificationCompat.Builder {
|
||||||
val flag = if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
|
val flags = if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
|
||||||
PendingIntent.FLAG_IMMUTABLE
|
PendingIntent.FLAG_IMMUTABLE or PendingIntent.FLAG_CANCEL_CURRENT
|
||||||
} else {
|
} else {
|
||||||
0
|
PendingIntent.FLAG_CANCEL_CURRENT
|
||||||
}
|
}
|
||||||
|
|
||||||
val activityIntent =
|
val activityIntent =
|
||||||
@ -338,7 +338,7 @@ class DownloadService : Service() {
|
|||||||
Intent(this@DownloadService, MainActivity::class.java).apply {
|
Intent(this@DownloadService, MainActivity::class.java).apply {
|
||||||
putExtra("fragmentToOpen", "downloads")
|
putExtra("fragmentToOpen", "downloads")
|
||||||
},
|
},
|
||||||
flag
|
flags
|
||||||
)
|
)
|
||||||
|
|
||||||
return NotificationCompat
|
return NotificationCompat
|
||||||
|
Loading…
x
Reference in New Issue
Block a user