CBZ: fix meta for non-images documents
[fanfix.git] / src / be / nikiroo / fanfix / supported / Epub.java
index 9b06f202f965e82782f3acf98607d9bf6c37ac65..8ae4c6c37052c5569674804b3be5d4fa3244f343 100644 (file)
@@ -196,6 +196,7 @@ class Epub extends InfoText {
                        meta.setUrl(url);
                        meta.setTitle(title);
                        meta.setAuthor(author);
+                       meta.setImageDocument(isImagesDocumentByDefault());
                }
        }
 
@@ -231,4 +232,8 @@ class Epub extends InfoText {
        protected boolean getCover() {
                return true;
        }
+
+       protected boolean isImagesDocumentByDefault() {
+               return false;
+       }
 }