@@ -30,27 +30,27 @@ 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 #keepandroidopen ` ;
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 #keepandroidopen ` ;
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 #keepandroidopen ` ;
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
5151function linkedinDraftUrl(orgName : string , linkedinUrl : string ): string {
5252 const handle = ' @' + linkedinUrl .split (' /' ).pop ();
53- const text = ` Thank you ${handle } for supporting Keep @Android Open @keepandroidopen #keepandroidopen ` ;
53+ const text = ` Thank you ${handle } for supporting Keep @Android Open @keepandroidopen #KeepAndroidOpen ` ;
5454 return ` https://www.linkedin.com/sharing/share-offsite/?text=${encodeURIComponent (text )} ` ;
5555}
5656---
0 commit comments