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

Merged
tomasino merged 1 commits from :fix-trailing-slashes into master 2021-10-13 11:07:48 +00:00
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 = ''