From 3b6d3963f18e7acfb96fa477f0684f905a11fd44 Mon Sep 17 00:00:00 2001 From: Gazook89 <58999374+Gazook89@users.noreply.github.com> Date: Thu, 1 Dec 2022 11:01:40 -0600 Subject: [PATCH] point to defaultMetatags.image --- server/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/app.js b/server/app.js index 8e86d5ec9..8d00ab21f 100644 --- a/server/app.js +++ b/server/app.js @@ -304,7 +304,7 @@ app.get('/share/:id', asyncHandler(getBrew('share')), asyncHandler(async (req, r req.ogMeta = { ...defaultMetaTags, title : req.brew.title || 'Untitled Brew', description : req.brew.description || 'No description.', - image : req.brew.thumbnail || `${config.get('publicUrl')}/thumbnail.png`, + image : req.brew.thumbnail || defaultMetaTags.image, type : 'article' };