diff --git a/server/app.js b/server/app.js index 1c4905698..90d2b8e94 100644 --- a/server/app.js +++ b/server/app.js @@ -433,8 +433,7 @@ app.get('/new', asyncHandler(async(req, res, next)=>{ app.get('/share/:id', asyncHandler(getBrew('share')), asyncHandler(async (req, res, next)=>{ const { brew } = req; req.ogMeta = { ...defaultMetaTags, - title : req.brew.title || 'Untitled Brew', - author : req.brew.authors[0] || 'No author.', + title : `${req.brew.title || 'Untitled Brew'} - ${req.brew.authors[0] || 'No author.'}`, description : req.brew.description || 'No description.', image : req.brew.thumbnail || defaultMetaTags.image, type : 'article'