tweaking fix for ships with trailing slash

This commit is contained in:
James Tomasino 2021-10-13 11:14:12 +00:00
parent d420e1b4d7
commit 7ecb4c9790
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'), '').replace(new RegExp('/(?:index.html)?$',''));
const ship = decodeURIComponent(req.path).replace(new RegExp('/ships/', 'i'), '').replace(new RegExp('/(?:index.html)?$', 'i'), '');
const description = bufferFile('/var/gopher/' + ship + '/.description') || ''
const license = bufferFile('/var/gopher/' + ship + '/LICENSE') || ''
var licenseLabel = ''