manime
manime
> "So I am advocating that you advocate for no relay -> relay comms as an inviolable cornerstone of the nostr protocol." @pjv Nostr nobody here, just pointing out that...
Imma dive into this once I get oriented to coracle with #167.
Gon try to tackle this as "low hanging fruit" dip my toes in the water of coracle.
I assume MediaSet.svelte is the template to use. I see it implemented once in NoteContentType1.svelte, supposedly for rendering "extraLinks" that don't fit in the note summary? But I don't see...
Hmm... looks like the "isMedia" property of URLs "discovered" in note content does not distinguish between web pages (excluding domain root?) and actual media content... ``` typescript export const urlIsMedia...
LOL util/misc ```typescript export const annotateMedia = (url: string) => { if (url.match(/open.spotify.com/)) { return {type: "spotify", url} } else if (url.match(/\.(jpe?g|png|gif|webp)$/)) { return {type: "image", url} } else if...
It's only a bit disorganized around the edges... mostly a well constructed labor of love. Thanks for your patience as I orient myself. Lol.
Thanks for implementing the above... but seems to be incomplete. A "complete" (functional as intended) implementation of NIP-49 would allow one to "import" an ncryptnsec as well as "copy" it...
Thanks @fiatjaf . As far as I can tell... current implementation only allows to encrypt a private key (for copying OUT) but not to decrypt. I'm suggesting to allow PASTING...
@Sebastix I think your issue is different (related?) from mine. What I'm reporting is specifically when calling fetchProfile() from server side code. @pablof7z : > are you sure you are...