Fix incorrect formatting of error message.
This commit is contained in:
@@ -401,7 +401,7 @@ func groupStatusHandler(w http.ResponseWriter, r *http.Request) {
|
|||||||
func publicHandler(w http.ResponseWriter, r *http.Request) {
|
func publicHandler(w http.ResponseWriter, r *http.Request) {
|
||||||
base, err := groupBase(r)
|
base, err := groupBase(r)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Println("couldn't determine group base: %v", err)
|
log.Printf("couldn't determine group base: %v", err)
|
||||||
http.Error(w, "Internal server error",
|
http.Error(w, "Internal server error",
|
||||||
http.StatusInternalServerError)
|
http.StatusInternalServerError)
|
||||||
return
|
return
|
||||||
|
|||||||
Reference in New Issue
Block a user