fix:conflict.

Signed-off-by: KaiserBh <kaiserbh@proton.me>
This commit is contained in:
KaiserBh
2023-08-03 01:40:46 +10:00
parent 70452acdda
commit 536c5facb9
3 changed files with 5 additions and 5 deletions

View File

@@ -75,7 +75,7 @@ class SyncManager(
backupManager.backupMangas(databaseManga, BACKUP_ALL),
backupManager.backupCategories(BACKUP_ALL),
emptyList(),
backupManager.backupExtensionInfo(databaseManga),
backupManager.prepExtensionInfoForSync(databaseManga),
)
// Create the SyncStatus object
@@ -215,7 +215,7 @@ class SyncManager(
localChapter.last_page_read != remoteChapter.lastPageRead ||
localChapter.date_fetch != remoteChapter.dateFetch ||
localChapter.date_upload != remoteChapter.dateUpload ||
localChapter.chapter_number != remoteChapter.chapterNumber ||
localChapter.chapter_number.toFloat() != remoteChapter.chapterNumber ||
localChapter.source_order != remoteChapter.sourceOrder
} ?: true
}

View File

@@ -36,7 +36,7 @@ class SyncNotifier(private val context: Context) {
fun showSyncProgress(content: String = "", progress: Int = 0, maxAmount: Int = 100): NotificationCompat.Builder {
val builder = with(progressNotificationBuilder) {
setContentTitle(context.getString(R.string.syncing_data))
setContentTitle(context.getString(R.string.syncing_library))
if (!preferences.hideNotificationContent().get()) {
setContentText(content)