From c697b6f98caa5984c22b97f2e8eec76226529a52 Mon Sep 17 00:00:00 2001 From: Nguyễn Gia Phong Date: Sat, 24 Dec 2022 10:10:42 +0900 Subject: Fix missing Atom feed content --- atom.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/atom.go b/atom.go index d905348..3fc3d4a 100644 --- a/atom.go +++ b/atom.go @@ -94,7 +94,7 @@ func synthesizeAtom(r *http.Request, dir string, updated time.Time) AtomFeed { } defer cbz.Close() for i, f := range cbz.File { - if isImageFile(f) { + if !isImageFile(f) { continue } images = append(images, -- cgit 1.4.1