From 1f28d3f32ff7e7624b2dc32079368684387e57f0 Mon Sep 17 00:00:00 2001 From: VictorieeMan <59509525+VictorieeMan@users.noreply.github.com> Date: Sat, 28 Oct 2023 12:12:31 +0200 Subject: [PATCH] changing externa sharing service for text notes to njump.me Changed "https://snort.social/e/" to "https://njump.me/" Benefits of this change are the link previews that njump.me generates for shared content. The snort social links are just the url root and a long nevent, making different shares difficult to tell apart, and a bit scary to click on for some. More benefits of njump.me listed on https://njump.me/, hosted by fiatjaf. The included nostr onboarding paired with client agnosticism is also beneficial. --- .../com/vitorpamplona/amethyst/ui/note/NoteQuickActionMenu.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/java/com/vitorpamplona/amethyst/ui/note/NoteQuickActionMenu.kt b/app/src/main/java/com/vitorpamplona/amethyst/ui/note/NoteQuickActionMenu.kt index 8fcecbf25..1542cb039 100644 --- a/app/src/main/java/com/vitorpamplona/amethyst/ui/note/NoteQuickActionMenu.kt +++ b/app/src/main/java/com/vitorpamplona/amethyst/ui/note/NoteQuickActionMenu.kt @@ -99,7 +99,7 @@ val externalLinkForNote = { note: Note -> if (note.event is FileHeaderEvent) { "https://filestr.vercel.app/e/${note.toNEvent()}" } else { - "https://snort.social/e/${note.toNEvent()}" + "https://njump.me/${note.toNEvent()}" } } }