Skip to content

Commit

Permalink
Patch Access group nil pointer (deso-protocol#564)
Browse files Browse the repository at this point in the history
  • Loading branch information
lazynina authored and erwin.willems committed May 23, 2024
1 parent cc26a69 commit 79fcd86
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions routes/access_group.go
Original file line number Diff line number Diff line change
Expand Up @@ -758,6 +758,10 @@ func (fes *APIServer) getAccessGroupInfo(publicKeyBase58DecodedBytes []byte, acc
return nil, errors.Wrapf(err, "getAccessGroupInfo: Problem getting access group ids for member")
}

if accessGroupInfoCore == nil {
return nil, nil
}

accessGroupInfo := fes.AccessGroupEntryToResponse(accessGroupInfoCore, utxoView, nil)

return &accessGroupInfo, nil
Expand Down Expand Up @@ -812,6 +816,12 @@ func (fes *APIServer) GetAccessGroupInfo(ww http.ResponseWriter, req *http.Reque
requestData.AccessGroupOwnerPublicKeyBase58Check, requestData.AccessGroupKeyName, err))
return
}
if accessGroupInfo == nil {
_AddNotFoundError(ww, fmt.Sprintf("GetAccessGroupInfo: Access group not found for public key %s and access "+
"group key name %s",
requestData.AccessGroupOwnerPublicKeyBase58Check, requestData.AccessGroupKeyName))
return
}

res := accessGroupInfo

Expand Down

0 comments on commit 79fcd86

Please sign in to comment.