From 30e02f2898b59a792bd8b640a0d3d3eb85a1caab Mon Sep 17 00:00:00 2001 From: Ferdinand Thiessen Date: Mon, 7 Oct 2024 18:32:35 +0200 Subject: [PATCH] fix(federatedfilesharing): Use valid mastodon URL for sharing Signed-off-by: Ferdinand Thiessen --- apps/federatedfilesharing/src/components/PersonalSettings.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/federatedfilesharing/src/components/PersonalSettings.vue b/apps/federatedfilesharing/src/components/PersonalSettings.vue index bec3c9652f7..37a09ad4517 100644 --- a/apps/federatedfilesharing/src/components/PersonalSettings.vue +++ b/apps/federatedfilesharing/src/components/PersonalSettings.vue @@ -118,7 +118,7 @@ export default { return t('federatedfilesharing', 'Share with me through my #Nextcloud Federated Cloud ID') }, shareMastodonUrl() { - return `https://https://mastodon.xyz/?text=${encodeURIComponent(this.messageWithoutURL)}&url=${encodeURIComponent(this.reference)}` + return `https://mastodon.social/?text=${encodeURIComponent(this.messageWithoutURL)}&url=${encodeURIComponent(this.reference)}` }, shareXUrl() { return `https://x.com/intent/tweet?text=${encodeURIComponent(this.messageWithURL)}` -- 2.39.5