Albirew/tachiyomi
Archivé
1
0
Bifurcation 0

Include source name in backup restore error logs (closes #4230)

Cette révision appartient à :
arkon 2021-01-01 16:43:32 -05:00
Parent b7914909d0
révision 3bb2102eb4
2 fichiers modifiés avec 10 ajouts et 8 suppressions

Voir le fichier

@ -67,16 +67,17 @@ class FullBackupRestore(context: Context, notifier: BackupNotifier, private val
val history = backupManga.history
val tracks = backupManga.getTrackingImpl()
val source = backupManager.sourceManager.get(manga.source)
val sourceName = sourceMapping[manga.source] ?: manga.source.toString()
try {
val source = backupManager.sourceManager.get(manga.source)
if (source != null || !online) {
restoreMangaData(manga, source, chapters, categories, history, tracks, backupCategories, online)
} else {
val sourceName = sourceMapping[manga.source] ?: manga.source.toString()
errors.add(Date() to "${manga.title} - ${context.getString(R.string.source_not_found_name, sourceName)}")
errors.add(Date() to "${manga.title} [$sourceName]: ${context.getString(R.string.source_not_found_name, sourceName)}")
}
} catch (e: Exception) {
errors.add(Date() to "${manga.title} - ${e.message}")
errors.add(Date() to "${manga.title} [$sourceName]: ${e.message}")
}
restoreProgress += 1

Voir le fichier

@ -86,16 +86,17 @@ class LegacyBackupRestore(context: Context, notifier: BackupNotifier) : Abstract
?: JsonArray()
)
val source = backupManager.sourceManager.get(manga.source)
val sourceName = sourceMapping[manga.source] ?: manga.source.toString()
try {
val source = backupManager.sourceManager.get(manga.source)
if (source != null) {
restoreMangaData(manga, source, chapters, categories, history, tracks)
} else {
val sourceName = sourceMapping[manga.source] ?: manga.source.toString()
errors.add(Date() to "${manga.title} - ${context.getString(R.string.source_not_found_name, sourceName)}")
errors.add(Date() to "${manga.title} [$sourceName]: ${context.getString(R.string.source_not_found_name, sourceName)}")
}
} catch (e: Exception) {
errors.add(Date() to "${manga.title} - ${e.message}")
errors.add(Date() to "${manga.title} [$sourceName]: ${e.message}")
}
restoreProgress += 1