Skip to content

Commit

Permalink
Merge pull request #36 from ensdomains/getprofile-graph-node-lowercase
Browse files Browse the repository at this point in the history
set resolverId to lower case in getProfile
  • Loading branch information
TateB authored Aug 18, 2022
2 parents 6d58ad8 + bf1b5c0 commit 90b0992
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/ensjs/src/functions/getProfile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ const graphFetch = async (
;({ domain } = await client.request(query, { id }))
resolverResponse = domain?.resolver
} else {
const resolverId = `${resolverAddress}-${id}`
const resolverId = `${resolverAddress.toLowerCase()}-${id}`
;({ resolver: resolverResponse, domain } = await client.request(
customResolverQuery,
{ id, resolverId },
Expand Down

0 comments on commit 90b0992

Please sign in to comment.