Fix copy/paste typo in log message

This commit is contained in:
Benedikt Kulmann
2020-09-29 15:10:28 +02:00
parent 60efd6371b
commit b1b1ecfc54

View File

@@ -153,7 +153,7 @@ func (r CS3Repo) WriteGroup(ctx context.Context, g *proto.Group) (err error) {
var by []byte
if by, err = json.Marshal(g); err != nil {
return merrors.InternalServerError(r.serviceID, "could not marshal account: %v", err.Error())
return merrors.InternalServerError(r.serviceID, "could not marshal group: %v", err.Error())
}
ureq, err := http.NewRequest("PUT", r.groupURL(g.Id), bytes.NewReader(by))