Update property to match JSON key

This commit is contained in:
Eric Eastwood 2021-01-15 18:05:48 -06:00
parent a8e947e93d
commit 4ace5a0b5f

View file

@ -317,7 +317,7 @@ func (b *BaseDendrite) SetupAndServeHTTP(
return util.JSONResponse{ return util.JSONResponse{
Code: http.StatusOK, Code: http.StatusOK,
JSON: struct { JSON: struct {
Versions bool `json:"success"` Success bool `json:"success"`
}{true}, }{true},
} }
}), }),