diff options
author | Nguyễn Gia Phong <mcsinyx@disroot.org> | 2022-12-24 10:10:42 +0900 |
---|---|---|
committer | Nguyễn Gia Phong <mcsinyx@disroot.org> | 2022-12-24 10:10:42 +0900 |
commit | c697b6f98caa5984c22b97f2e8eec76226529a52 (patch) | |
tree | b89d5200a9e394fe0bd6901f63f9512d54cc830c | |
parent | cd07645af510a6e16d132c6ec96c49707bbceb23 (diff) | |
download | phylactery-c697b6f98caa5984c22b97f2e8eec76226529a52.tar.gz |
Fix missing Atom feed content
-rw-r--r-- | atom.go | 2 |
1 files changed, 1 insertions, 1 deletions
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, |