From 8c51f8faed53134374475a2d62673649f6502f67 Mon Sep 17 00:00:00 2001 From: Believethehype <1097224+believethehype@users.noreply.github.com> Date: Wed, 24 Apr 2024 12:17:20 +0200 Subject: [PATCH] Update FilterGeneration.vue --- ui/noogle/src/components/FilterGeneration.vue | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/ui/noogle/src/components/FilterGeneration.vue b/ui/noogle/src/components/FilterGeneration.vue index 6c46329..9af156f 100644 --- a/ui/noogle/src/components/FilterGeneration.vue +++ b/ui/noogle/src/components/FilterGeneration.vue @@ -413,7 +413,7 @@ async function listen() { let picture = profile === undefined ? "../assets/nostr-purple.svg" : profile["profile"]["picture"] let highlighterurl = "https://highlighter.com/e/" + profile["author"] - let njumpurl = "https://njump.me/" + profile["author"] + let njumpurl = "https://njump.me/" + PublicKey.parse(profile["author"]).toBech32() let nostrudelurl = "https://nostrudel.ninja/#/n/" + profile["author"] @@ -438,7 +438,7 @@ async function listen() { event: profile, author: name, authorid: profile["author"], - authorurl: "https://njump.me/" +profile["author"], + authorurl: "https://njump.me/" + PublicKey.parse(profile["author"]).toBech32(), links: { "highlighter": highlighterurl, "njump": njumpurl, @@ -878,6 +878,7 @@ async function mute(result) { else{ jsonObject.push(["p", result.authorid]) + store.state.mutes.push(result.authorid) let newcontent = JSON.stringify(jsonObject) console.log(newcontent) eventasjson.content = await (await signer).nip04Encrypt(store.state.pubkey, newcontent) @@ -1333,16 +1334,21 @@ const submitHandler = async () => {
+
+ + +
DVM Picture
-

{{ result.event.profile.name }}

+ + {{ result.event.profile.name }}
@@ -1355,6 +1361,7 @@ const submitHandler = async () => {
+