Skip to content

Commit

Permalink
Update Mastodon profile URL (#10082)
Browse files Browse the repository at this point in the history
Fixes #10078
  • Loading branch information
ramsey authored Apr 17, 2024
1 parent caea759 commit 50646f0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion services/mastodon/mastodon-follow.service.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export default class MastodonFollow extends BaseJsonService {
message: metric(followers),
style: 'social',
link: [
`${domain}/users/${username}/remote_follow`,
`${domain}/users/${username}`,
`${domain}/users/${username}/followers`,
],
}
Expand Down
4 changes: 2 additions & 2 deletions services/mastodon/mastodon-follow.tester.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ t.create('Followers - default domain')
label: 'follow @wilkie',
message: isMetric,
link: [
'https://mastodon.social/users/wilkie/remote_follow',
'https://mastodon.social/users/wilkie',
'https://mastodon.social/users/wilkie/followers',
],
})
Expand All @@ -33,7 +33,7 @@ t.create('Followers - alternate domain')
label: 'follow @PhotonQyv',
message: isMetric,
link: [
'https://mastodon.xyz/users/PhotonQyv/remote_follow',
'https://mastodon.xyz/users/PhotonQyv',
'https://mastodon.xyz/users/PhotonQyv/followers',
],
})

0 comments on commit 50646f0

Please sign in to comment.