diff --git a/src/meta/tags.js b/src/meta/tags.js index 0938980f22..4224f85dee 100644 --- a/src/meta/tags.js +++ b/src/meta/tags.js @@ -108,7 +108,7 @@ Tags.parse = function (req, data, meta, link, callback) { return callback(err); } - meta = results.tags.concat(meta || []).map(function (tag) { + meta = results.tags.defaultTags.concat(meta || []).map(function (tag) { if (!tag || typeof tag.content !== 'string') { winston.warn('Invalid meta tag. ', tag); return tag; @@ -139,7 +139,7 @@ Tags.parse = function (req, data, meta, link, callback) { addIfNotExists(meta, 'property', 'og:image:height', 200); } - link = results.links.concat(link || []); + link = results.links.defaultLinks.concat(link || []); callback(null, { meta: meta,