0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-16 08:12:42 +00:00

Merge pull request #4178 from naturalcrit/template-metadata-brew

Add author as metadata for link unfurling
This commit is contained in:
Víctor Losada Hernández
2025-05-03 00:32:01 +02:00
committed by GitHub

View File

@@ -433,7 +433,7 @@ app.get('/new', asyncHandler(async(req, res, next)=>{
app.get('/share/:id', asyncHandler(getBrew('share')), asyncHandler(async (req, res, next)=>{ app.get('/share/:id', asyncHandler(getBrew('share')), asyncHandler(async (req, res, next)=>{
const { brew } = req; const { brew } = req;
req.ogMeta = { ...defaultMetaTags, req.ogMeta = { ...defaultMetaTags,
title : req.brew.title || 'Untitled Brew', title : `${req.brew.title || 'Untitled Brew'} - ${req.brew.authors[0] || 'No author.'}`,
description : req.brew.description || 'No description.', description : req.brew.description || 'No description.',
image : req.brew.thumbnail || defaultMetaTags.image, image : req.brew.thumbnail || defaultMetaTags.image,
type : 'article' type : 'article'