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.
This commit is contained in:
VictorieeMan 2023-10-28 12:12:31 +02:00 committed by GitHub
parent 2ccf7ec2f0
commit 1f28d3f32f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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()}"
}
}
}