File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -30,21 +30,21 @@ function logoPath(url: string): string {
3030// Build compose/draft URLs for each social platform
3131function 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
3737function 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
4343function 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---
You can’t perform that action at this time.
0 commit comments