Skip to content

Commit 0866554

Browse files
committed
Update social media message
1 parent 5b2eb03 commit 0866554

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/pages/open-letter.astro

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,21 +30,21 @@ function logoPath(url: string): string {
3030
// Build compose/draft URLs for each social platform
3131
function xDraftUrl(orgName: string, xUrl: string): string {
3232
const handle = '@' + xUrl.split('/').pop();
33-
const text = `Thank you ${handle} for supporting Keep Android Open @AlteredDeal`;
33+
const text = `Thank you ${handle} for supporting Keep Android Open @AlteredDeal #keepandroidopen`;
3434
return `https://x.com/intent/tweet?text=${encodeURIComponent(text)}`;
3535
}
3636
3737
function bskyDraftUrl(orgName: string, bskyUrl: string): string {
3838
const handle = '@' + bskyUrl.split('/').pop();
39-
const text = `Thank you ${handle} for supporting Keep Android Open @keepandroidopen.bsky.social`;
39+
const text = `Thank you ${handle} for supporting Keep Android Open @keepandroidopen.bsky.social #keepandroidopen`;
4040
return `https://bsky.app/intent/compose?text=${encodeURIComponent(text)}`;
4141
}
4242
4343
function mastodonDraftUrl(orgName: string, mastodonUrl: string): string {
4444
const url = new URL(mastodonUrl);
4545
const user = url.pathname.split('/').pop();
4646
const handle = `${user}@${url.hostname}`;
47-
const text = `Thank you ${handle} for supporting Keep Android Open @keepandroidopen@techhub.social`;
47+
const text = `Thank you ${handle} for supporting Keep Android Open @keepandroidopen@techhub.social #keepandroidopen`;
4848
return `${url.origin}/share?text=${encodeURIComponent(text)}`;
4949
}
5050
---

0 commit comments

Comments
 (0)