Fix semicolon.

This commit is contained in:
Matjaz
2022-01-08 22:10:36 +01:00
parent 8a3d07b228
commit 4c615a2a44

View File

@ -28,7 +28,7 @@ function articles(request, response) {
function articles_item(request, response) {
try {
var article = fs.readFileSync('./articles/' + request.params.item);
var articlePage = `20 text/gemini\r\n\r\n${article}\r\n\r\n=> /articles/ 📓Articles\r\n=> / 🏡Home\r\n`
var articlePage = `20 text/gemini\r\n\r\n${article}\r\n\r\n=> /articles/ 📓Articles\r\n=> / 🏡Home\r\n`;
response.send(articlePage);
} catch (error) {
response.error(51);