diff --git a/src/shared/nip05.tsx b/src/shared/nip05.tsx index e9cc7ee9..913ac672 100644 --- a/src/shared/nip05.tsx +++ b/src/shared/nip05.tsx @@ -40,7 +40,7 @@ export const NIP05 = memo(function NIP05({ const data: NIP05 = await res.json(); if (data.names) { - if (data.names[localPath] !== pubkey) return false; + if (data.names[localPath.toLowerCase()] !== pubkey) return false; return true; } return false;