Skip to content
This repository has been archived by the owner on Dec 23, 2024. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
GingerAdonis committed Mar 27, 2024
2 parents 4259aa1 + 5a0182b commit 670e359
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/http/routes/downloads.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,15 @@ export class DownloadsRouter {
});

router.get('/demo', (req, res) => {
res.redirect('https://files.xoti.net/rollercoaster-tycoon-2/demos/rct2-triple-thrill-pack-demo/');
res.redirect(301, 'https://files.xoti.net/rollercoaster-tycoon-2/demos/rct2-triple-thrill-pack-demo/');
});

router.get('/demo/zip', (req, res) => {
res.redirect('https://files.xoti.net/rollercoaster-tycoon-2/demos/rct2-triple-thrill-pack-demo/');
res.redirect(301, 'https://files.xoti.net/rollercoaster-tycoon-2/demos/rct2-triple-thrill-pack-demo/');
});

router.get('/demo/exe', (req, res) => {
res.redirect('https://files.xoti.net/rollercoaster-tycoon-2/demos/rct2-triple-thrill-pack-demo-executable/');
res.redirect(301, 'https://files.xoti.net/rollercoaster-tycoon-2/demos/rct2-triple-thrill-pack-demo-executable/');
});

router.param('branch', (req, res, next, branch) => {
Expand Down

0 comments on commit 670e359

Please sign in to comment.