This commit is contained in:
2023-11-25 16:03:05 +07:00
parent 31a53b9c48
commit 24b21a9451
3 changed files with 8 additions and 9 deletions

View File

@@ -39,7 +39,6 @@ export const NIP05 = memo(function NIP05({
if (!res.ok) throw new Error(`Failed to fetch NIP-05 service: ${nip05}`);
const data: NIP05 = await res.json();
if (data.names) {
if (data.names[localPath] !== pubkey) return false;
return true;