v1.18.x
Barış Soner Uşaklı 7 years ago
parent ae5dc795c3
commit 15a8ec2138

@ -297,14 +297,16 @@ function addTags(topicData, req, res) {
if (image.startsWith(nconf.get('url') + '/plugins')) { if (image.startsWith(nconf.get('url') + '/plugins')) {
return; return;
} }
var data = { res.locals.metaTags.push({
property: 'og:image', property: 'og:image',
content: image, content: image,
noEscape: true, noEscape: true,
}; });
res.locals.metaTags.push(data); res.locals.metaTags.push({
data.property = 'og:image:url'; property: 'og:image:url',
res.locals.metaTags.push(data); content: image,
noEscape: true,
});
} }
}); });

Loading…
Cancel
Save