Skip to content

Commit

Permalink
Merge pull request #949 from SnowCait/fix-nip05-verification
Browse files Browse the repository at this point in the history
Fix NIP-05 verification
  • Loading branch information
SnowCait authored Dec 30, 2023
2 parents 2951e0e + b055bc2 commit a8f2f16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/lib/components/NostrAddress.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<div class="nip05">
<span>{metadata.normalizedNip05}</span>
{#await nip05.queryProfile(metadata.normalizedNip05) then pointer}
{#if pointer !== null}
{#if pointer !== null && pointer.pubkey === metadata.event.pubkey}
<IconDiscountCheck color="skyblue" />
{:else}
<IconAlertTriangle color="orange" />
Expand Down

1 comment on commit a8f2f16

@vercel
Copy link

@vercel vercel bot commented on a8f2f16 Dec 30, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

nostter – ./

nostter-snowcait.vercel.app
nostter-git-main-snowcait.vercel.app
nostter.app
nostter.vercel.app

Please sign in to comment.