Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix a typo #4539

Merged
merged 1 commit into from
Feb 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions changelog/unreleased/fix-typo.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Bugfix: Fix a typo

We fixed a typo

https://github.com/cs3org/reva/pull/4539
2 changes: 1 addition & 1 deletion internal/grpc/services/gateway/usershareprovider.go
Original file line number Diff line number Diff line change
Expand Up @@ -772,7 +772,7 @@ func (s *svc) checkShareLock(ctx context.Context, share *collaboration.Share) (*
}

if sRes.GetInfo().GetLock() != nil {
msg := "can not chane grants, the shared resource is locked"
msg := "can not change grants, the shared resource is locked"
logger.Debug().Interface("lock", sRes.GetInfo().GetLock()).Msg(msg)
return status.NewLocked(ctx, msg), errors.New(msg)
}
Expand Down
Loading