Fix trailing slash in ship URL (and trailing index.html for good measure)

This commit is contained in:
Robert Miles 2021-10-13 11:05:15 +00:00
parent 3109785c6a
commit 225c4b3596
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ app.get('/ships', async function (req, res) {
app.get('/ships/*', async function (req, res) {
const list = await head('/var/gopher/listing.gophermap')
const ship = decodeURIComponent(req.path).replace(new RegExp('/ships/', 'i'), '')
const ship = decodeURIComponent(req.path).replace(new RegExp('/ships/', 'i'), '').replace(new RegExp('/(?:index.html)?$',''));
const description = bufferFile('/var/gopher/' + ship + '/.description') || ''
const license = bufferFile('/var/gopher/' + ship + '/LICENSE') || ''
var licenseLabel = ''