tiny 88x31 lexicon for atproto
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

don't mix path types

+1 -1
+1 -1
handler/handler.go
··· 44 44 mux.HandleFunc(oauthCallbackPath(), h.oauthCallback) 45 45 mux.HandleFunc(clientMetadataPath(), h.WithCORS(h.serveClientMetadata)) 46 46 mux.HandleFunc(oauthJWKSPath(), h.WithCORS(h.serveJWKS)) 47 - mux.HandleFunc("/favicon.ico", func(w http.ResponseWriter, r *http.Request) { 47 + mux.HandleFunc("GET /favicon.ico", func(w http.ResponseWriter, r *http.Request) { 48 48 http.ServeFile(w, r, "./static/favicon.ico") 49 49 }) 50 50 return h