diff --git a/modules/server/archive.go b/modules/server/archive.go index bf1ffb2..4d48fc0 100644 --- a/modules/server/archive.go +++ b/modules/server/archive.go @@ -71,18 +71,7 @@ func generateArchiveIndex(fsPath string, urlPath string) (string, error) { b.WriteString("\n\n

Index of ") b.WriteString(template.HTMLEscapeString(urlPath)) b.WriteString("


")
-
-	if urlPath != "/" {
-		b.WriteString(
-			`../` + "\n",
-		)
-	} else {
-		b.WriteString(
-			`../` + "\n",
-		)
-	}
+	b.WriteString("../\n")
 
 	nameCol := 50
 	for _, ei := range list {
diff --git a/modules/version/version.go b/modules/version/version.go
index 1e50ad7..338b932 100644
--- a/modules/version/version.go
+++ b/modules/version/version.go
@@ -9,7 +9,7 @@ var gitCommit string = "devel"
 
 const PROGRAM_NAME string = "fes"
 const PROGRAM_NAME_LONG string = "fes/fSD"
-const VERSION string = "1.0.0"
+const VERSION string = "1.0.1"
 
 func Version() {
 	fmt.Printf("%s version %s\n", PROGRAM_NAME_LONG, VERSION)