fix double escaping in title and og:title

This commit is contained in:
barisusakli
2016-03-09 19:49:36 +02:00
parent f7aa44d1bf
commit d067943773

View File

@@ -183,7 +183,7 @@ topicsController.get = function(req, res, callback) {
res.locals.metaTags = [ res.locals.metaTags = [
{ {
name: "title", name: "title",
content: topicData.title content: topicData.titleRaw
}, },
{ {
name: "description", name: "description",
@@ -191,7 +191,7 @@ topicsController.get = function(req, res, callback) {
}, },
{ {
property: 'og:title', property: 'og:title',
content: topicData.title content: topicData.titleRaw
}, },
{ {
property: 'og:description', property: 'og:description',