From c09a4c437405d34905c807c9a1ea618771073090 Mon Sep 17 00:00:00 2001 From: Trevor Buckner Date: Thu, 17 Nov 2022 22:58:46 -0500 Subject: [PATCH] cleanup --- server/app.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/server/app.js b/server/app.js index 735e6dc4c..5c4a1ca5f 100644 --- a/server/app.js +++ b/server/app.js @@ -149,7 +149,7 @@ app.get('/changelog', async (req, res, next)=>{ req.ogMeta = { ...defaultMetaTags, title : 'Changelog', description : 'Development changelog.', - thumbnail : null, + thumbnail : null }; splitTextStyleAndMetadata(req.brew); @@ -209,7 +209,7 @@ app.get('/user/:username', async (req, res, next)=>{ req.ogMeta = { ...defaultMetaTags, title : `${req.params.username}'s Collection`, description : 'View my collection of homebrew on the Homebrewery.', - image : null, + image : null // type : could be 'profile'? }; @@ -378,7 +378,7 @@ app.get('/account', asyncHandler(async (req, res, next)=>{ req.ogMeta = { ...defaultMetaTags, title : `Account Page`, description : null, - image : null, + image : null }; return next();