check ogImageUrl

v1.18.x
barisusakli 9 years ago
parent d7ea418ba9
commit b08f6073de

@ -41,7 +41,6 @@ topicsController.get = function(req, res, callback) {
}, next); }, next);
}, },
function (results, next) { function (results, next) {
if (!results.topic.slug) { if (!results.topic.slug) {
return callback(); return callback();
} }
@ -178,7 +177,7 @@ topicsController.get = function(req, res, callback) {
ogImageUrl = '/logo.png'; ogImageUrl = '/logo.png';
} }
if (ogImageUrl.indexOf('http') === -1) { if (typeof ogImageUrl === 'string' && ogImageUrl.indexOf('http') === -1) {
ogImageUrl = nconf.get('url') + ogImageUrl; ogImageUrl = nconf.get('url') + ogImageUrl;
} }

Loading…
Cancel
Save