From 9f66cd0660f5f9c6c3128aa797dd251c1c94f394 Mon Sep 17 00:00:00 2001 From: Vitor Pamplona Date: Thu, 13 Nov 2025 09:10:56 -0500 Subject: [PATCH] Opens Follow Packs on following.space --- .../com/vitorpamplona/amethyst/ui/note/NoteQuickActionMenu.kt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/note/NoteQuickActionMenu.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/note/NoteQuickActionMenu.kt index 3ca426f39..df45d9c93 100644 --- a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/note/NoteQuickActionMenu.kt +++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/note/NoteQuickActionMenu.kt @@ -93,6 +93,7 @@ import com.vitorpamplona.amethyst.ui.theme.isLight import com.vitorpamplona.amethyst.ui.theme.secondaryButtonBackground import com.vitorpamplona.quartz.experimental.audio.track.AudioTrackEvent import com.vitorpamplona.quartz.experimental.bounties.bountyBaseReward +import com.vitorpamplona.quartz.nip51Lists.followList.FollowListEvent import com.vitorpamplona.quartz.nip51Lists.peopleList.PeopleListEvent import com.vitorpamplona.quartz.nip94FileMetadata.FileHeaderEvent import kotlinx.coroutines.launch @@ -125,6 +126,8 @@ val externalLinkForNote = { note: Note -> "https://listr.lol/a/${note.toNAddr()}" } else if (note.event is AudioTrackEvent) { "https://zapstr.live/?track=${note.toNAddr()}" + } else if (note.event is FollowListEvent) { + "https://following.space/d/${note.address.dTag}?p=${note.address.pubKeyHex}" } else { njumpLink(note.toNAddr()) }