diff options
author | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2022-10-24 14:35:08 +1100 |
---|---|---|
committer | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2022-10-24 14:35:08 +1100 |
commit | 0be194913036735b5bc97d74a37550d2bd099f13 (patch) | |
tree | 56a277b9d4b76966e1046f3fed2a110dc4c3dee3 /scripts | |
parent | remove self_edit_guilds, was dumb (diff) | |
download | server-0be194913036735b5bc97d74a37550d2bd099f13.tar.xz |
Change android and ios client downloads to use /download endpoint, update Release entity to suck less
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/client.js | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/scripts/client.js b/scripts/client.js index cba36170..6ec17341 100644 --- a/scripts/client.js +++ b/scripts/client.js @@ -63,6 +63,23 @@ const doPatch = (content) => { 'e.exports = "/assets/', ); + // app download links + content = content.replaceAll( + "https://play.google.com/store/apps/details?id=com.discord", + "https://slowcord.understars.dev/api/download?platform=android", + ); + + content = content.replaceAll( + "https://itunes.apple.com/app/discord/id985746746", + "https://slowcord.understars.dev/api/download?platform=ios" + ) + + // TODO change public test build link + // content = content.replaceAll( + // "https://discord.com/download#ptb-card", + // "" + // ) + return content; }; |