Update Libary update notification. (#5545)

* Update LibraryUpdateNotifier.kt

* Update LibraryUpdateService.kt
This commit is contained in:
FourTOne5 2021-07-15 03:57:03 +06:00 committed by GitHub
parent 7fd75b7501
commit 1dddba7f25
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -74,7 +74,7 @@ class LibraryUpdateNotifier(private val context: Context) {
.setContentTitle(context.getString(R.string.notification_check_updates)) .setContentTitle(context.getString(R.string.notification_check_updates))
.setContentText("($current/$total)") .setContentText("($current/$total)")
} else { } else {
val updatingText = manga.joinToString("\n") { it.title } val updatingText = manga.joinToString("\n") { "${it.title}" }
progressNotificationBuilder progressNotificationBuilder
.setContentTitle(context.getString(R.string.notification_updating, current, total)) .setContentTitle(context.getString(R.string.notification_updating, current, total))
.setStyle(NotificationCompat.BigTextStyle().bigText(updatingText)) .setStyle(NotificationCompat.BigTextStyle().bigText(updatingText))

View File

@ -295,7 +295,6 @@ class LibraryUpdateService(
} }
currentlyUpdatingManga.add(manga) currentlyUpdatingManga.add(manga)
progressCount.andIncrement
notifier.showProgressNotification( notifier.showProgressNotification(
currentlyUpdatingManga, currentlyUpdatingManga,
progressCount.get(), progressCount.get(),
@ -328,6 +327,7 @@ class LibraryUpdateService(
} }
currentlyUpdatingManga.remove(manga) currentlyUpdatingManga.remove(manga)
progressCount.andIncrement
notifier.showProgressNotification( notifier.showProgressNotification(
currentlyUpdatingManga, currentlyUpdatingManga,
progressCount.get(), progressCount.get(),