diff --git a/core/src/main/java/org/kiwix/kiwixmobile/core/downloader/downloadManager/FetchDownloadNotificationManager.kt b/core/src/main/java/org/kiwix/kiwixmobile/core/downloader/downloadManager/FetchDownloadNotificationManager.kt index 183715808..81d26b6a3 100644 --- a/core/src/main/java/org/kiwix/kiwixmobile/core/downloader/downloadManager/FetchDownloadNotificationManager.kt +++ b/core/src/main/java/org/kiwix/kiwixmobile/core/downloader/downloadManager/FetchDownloadNotificationManager.kt @@ -190,7 +190,12 @@ class FetchDownloadNotificationManager( putExtra(DOWNLOAD_NOTIFICATION_TITLE, downloadNotification.title) } val pendingIntent = - getActivity(context, ZERO, internal, FLAG_IMMUTABLE or FLAG_UPDATE_CURRENT) + getActivity( + context, + downloadNotification.notificationId, + internal, + FLAG_IMMUTABLE or FLAG_UPDATE_CURRENT + ) notificationBuilder.setContentIntent(pendingIntent) notificationBuilder.setAutoCancel(true) }