From 2f265172869f7ea0581223cc83969b1d1229615a Mon Sep 17 00:00:00 2001 From: Ciprian Dorin Craciun Date: Sun, 28 Aug 2022 18:27:08 +0300 Subject: [PATCH] [archiver] Also allow `_index.*` as index files. --- sources/lib/archiver/index.go | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/sources/lib/archiver/index.go b/sources/lib/archiver/index.go index bea36ea..269311d 100644 --- a/sources/lib/archiver/index.go +++ b/sources/lib/archiver/index.go @@ -9,6 +9,13 @@ import "strings" var IndexNames = []string { + + "_index.html", "_index.htm", + "_index.xhtml", "_index.xht", + "_index.txt", + "_index.json", + "_index.xml", + "index.html", "index.htm", "index.xhtml", "index.xht", "index.txt",