1
0
Fork 0
mirror of https://github.com/binwiederhier/ntfy.git synced 2025-05-19 05:24:31 +02:00

Emojis in notifications; server caching

This commit is contained in:
Philipp Heckel 2021-11-29 09:34:43 -05:00
parent 052ab7d411
commit 8616be12a2
6 changed files with 159 additions and 64 deletions
server

View file

@ -92,7 +92,8 @@ var (
exampleSource string
//go:embed static
webStaticFs embed.FS
webStaticFs embed.FS
webStaticFsCached = &util.CachingEmbedFS{ModTime: time.Now(), FS: webStaticFs}
errHTTPBadRequest = &errHTTP{http.StatusBadRequest, http.StatusText(http.StatusBadRequest)}
errHTTPNotFound = &errHTTP{http.StatusNotFound, http.StatusText(http.StatusNotFound)}
@ -231,7 +232,7 @@ func (s *Server) handleExample(w http.ResponseWriter, r *http.Request) error {
}
func (s *Server) handleStatic(w http.ResponseWriter, r *http.Request) error {
http.FileServer(http.FS(webStaticFs)).ServeHTTP(w, r)
http.FileServer(http.FS(webStaticFsCached)).ServeHTTP(w, r)
return nil
}