We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ff2db7 commit b718253Copy full SHA for b718253
server/src/main/kotlin/suwayomi/tachidesk/manga/impl/update/Updater.kt
@@ -195,8 +195,8 @@ class Updater : IUpdater {
195
Chapter.getChapterList(job.manga.id, true)
196
job.copy(status = JobStatus.COMPLETE)
197
} catch (e: Exception) {
198
- if (e is CancellationException) throw e
199
logger.error(e) { "Error while updating ${job.manga.title}" }
+ if (e is CancellationException) throw e
200
job.copy(status = JobStatus.FAILED)
201
}
202
0 commit comments