removed /download from android routes in dev.js since it has no ui

This commit is contained in:
Danny Coates 2019-01-10 15:00:03 -08:00
parent 52b4c382cb
commit 3df32e2a22
No known key found for this signature in database
GPG Key ID: 4C442633C62E00CB
1 changed files with 0 additions and 1 deletions

View File

@ -33,7 +33,6 @@ module.exports = function(app, devServer) {
app.get('/', android); app.get('/', android);
app.get('/legal', android); app.get('/legal', android);
app.get(`/share/:id${ID_REGEX}`, android); app.get(`/share/:id${ID_REGEX}`, android);
app.get(`/download/:id${ID_REGEX}/:key`, android);
app.get('/completed', android); app.get('/completed', android);
app.get('/preferences', android); app.get('/preferences', android);
app.get('/options', android); app.get('/options', android);