chapterValid() now tests for empty chapter lists
This commit is contained in:
parent
142f3cb9db
commit
27dd1df40a
|
@ -145,6 +145,9 @@ public class ChapterUtils {
|
|||
}
|
||||
|
||||
private static boolean chaptersValid(List<Chapter> chapters) {
|
||||
if (chapters.isEmpty()) {
|
||||
return false;
|
||||
}
|
||||
for (Chapter c : chapters) {
|
||||
if (c.getTitle() == null) {
|
||||
return false;
|
||||
|
|
Loading…
Reference in New Issue