Include source name in update error log (closes #3482)

This commit is contained in:
arkon 2020-07-16 22:30:21 -04:00
parent 88ee86b7ef
commit 226ad13061

View File

@ -330,7 +330,7 @@ class LibraryUpdateService(
* @return a pair of the inserted and removed chapters. * @return a pair of the inserted and removed chapters.
*/ */
fun updateManga(manga: Manga): Observable<Pair<List<Chapter>, List<Chapter>>> { fun updateManga(manga: Manga): Observable<Pair<List<Chapter>, List<Chapter>>> {
val source = sourceManager.get(manga.source) ?: return Observable.empty() val source = sourceManager.getOrStub(manga.source)
// Update manga details metadata in the background // Update manga details metadata in the background
if (preferences.autoUpdateMetadata()) { if (preferences.autoUpdateMetadata()) {
@ -429,7 +429,8 @@ class LibraryUpdateService(
destFile.bufferedWriter().use { out -> destFile.bufferedWriter().use { out ->
errors.forEach { (manga, error) -> errors.forEach { (manga, error) ->
out.write("${manga.title}: $error\n") val source = sourceManager.getOrStub(manga.source)
out.write("${manga.title} ($source): $error\n")
} }
} }
return destFile return destFile