mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-02-01 09:51:42 -05:00
Merge pull request #745 from butonic/fix-id-or-username-query-handling
Fix id or username query handling
This commit is contained in:
@@ -230,7 +230,7 @@ func (s Service) findAccountsByQuery(ctx context.Context, query string) ([]strin
|
||||
qID, qSam := match[1], match[2]
|
||||
tmp := &proto.Account{}
|
||||
err = s.repo.LoadAccount(ctx, qID, tmp)
|
||||
if err != nil {
|
||||
if err != nil && !storage.IsNotFoundErr(err) {
|
||||
return nil, err
|
||||
}
|
||||
searchResults, err = s.index.FindBy(&proto.Account{}, "OnPremisesSamAccountName", qSam)
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
Bugfix: Fix id or username query handling
|
||||
|
||||
Tags: accounts
|
||||
|
||||
The code was stopping execution when encountering an error while loading an account by id. But for or queries we can continue execution.
|
||||
|
||||
https://github.com/owncloud/ocis/pull/745
|
||||
Reference in New Issue
Block a user