From b1b1ecfc540fcfa980bb26a073e1b69a5bd05b5c Mon Sep 17 00:00:00 2001 From: Benedikt Kulmann Date: Tue, 29 Sep 2020 15:10:28 +0200 Subject: [PATCH] Fix copy/paste typo in log message --- accounts/pkg/storage/cs3.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/accounts/pkg/storage/cs3.go b/accounts/pkg/storage/cs3.go index 0545813c76..87835f98cd 100644 --- a/accounts/pkg/storage/cs3.go +++ b/accounts/pkg/storage/cs3.go @@ -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))