1
Fork 0
mirror of https://github.com/jech/galene.git synced 2024-11-09 02:05:59 +01:00

Sort files in web interface.

This commit is contained in:
Juliusz Chroboczek 2020-10-08 13:32:50 +02:00
parent 31efabbefc
commit 865848c7bc

View file

@ -14,6 +14,7 @@ import (
"os"
"path"
"path/filepath"
"sort"
"strings"
"sync/atomic"
"time"
@ -551,6 +552,10 @@ func serveGroupRecordings(w http.ResponseWriter, r *http.Request, f *os.File, gr
return
}
sort.Slice(fis, func(i, j int) bool {
return fis[i].Name() < fis[j].Name()
})
w.Header().Set("content-type", "text/html; charset=utf-8")
w.Header().Set("cache-control", "no-cache")