aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorFerdinand Thiessen <opensource@fthiessen.de>2024-10-07 18:32:35 +0200
committerFerdinand Thiessen <opensource@fthiessen.de>2024-10-08 14:31:21 +0200
commit30e02f2898b59a792bd8b640a0d3d3eb85a1caab (patch)
tree9dbcb46302fa2e3406bd82a33807cf950aa8d2f5 /apps
parent268aad37049f8704d4a67568040791faa6615716 (diff)
downloadnextcloud-server-30e02f2898b59a792bd8b640a0d3d3eb85a1caab.tar.gz
nextcloud-server-30e02f2898b59a792bd8b640a0d3d3eb85a1caab.zip
fix(federatedfilesharing): Use valid mastodon URL for sharing
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Diffstat (limited to 'apps')
-rw-r--r--apps/federatedfilesharing/src/components/PersonalSettings.vue2
1 files changed, 1 insertions, 1 deletions
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)}`