Skip to content

Commit

Permalink
fixed slash error
Browse files Browse the repository at this point in the history
  • Loading branch information
Sammy Mansour committed May 20, 2020
1 parent 6760f43 commit c3c80d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/shell/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ const secret = tokens.secretSync();
// Create all your routes
var router = express.Router();
router.get('/', function (req, res) {
res.redirect(req.baseUrl + '/ssh/');
res.redirect(req.baseUrl + '/ssh');
});

router.get('/ssh/*', function (req, res) {
router.get('/ssh*', function (req, res) {

var id = uuidv4();

Expand Down

0 comments on commit c3c80d4

Please sign in to comment.