From 37478be0d913d34beea8d4cf995126abb1f03019 Mon Sep 17 00:00:00 2001 From: celogeek <65178+celogeek@users.noreply.github.com> Date: Fri, 30 Dec 2022 14:12:59 +0100 Subject: [PATCH] improve doc --- internal/epub/image_processing.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/epub/image_processing.go b/internal/epub/image_processing.go index 4a3bdb3..cb91e52 100644 --- a/internal/epub/image_processing.go +++ b/internal/epub/image_processing.go @@ -56,7 +56,7 @@ func LoadImages(path string, options *ImageOptions) ([]*Image, error) { case ".pdf": imageCount, imageInput, err = loadPdf(path) default: - err = fmt.Errorf("unknown file format (%s): support .cbz, .cbr, .pdf", ext) + err = fmt.Errorf("unknown file format (%s): support .cbz, .zip, .cbr, .rar, .pdf", ext) } } if err != nil {