Skip to content

Commit

Permalink
Fix output file format
Browse files Browse the repository at this point in the history
  • Loading branch information
waicool20 committed Sep 9, 2019
1 parent 1b535f6 commit 6875c9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/kotlin/com/waicool20/mr2tachiyomi/MR2Tachiyomi.kt
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ object MR2Tachiyomi {
}
).also { logger.info("Processed $fav") }
}.let {
jacksonObjectMapper().writerWithDefaultPrettyPrinter().writeValue(output.toFile(), it)
jacksonObjectMapper().writerWithDefaultPrettyPrinter().writeValue(output.toFile(), TachiyomiBackup(it))
}
logger.info("-----------------")
logger.info("Succesfully processed ${convertible.size} manga; Failed to process ${nonConvertible.size} manga")
Expand Down

0 comments on commit 6875c9e

Please sign in to comment.