v1.18.x
Sebastian G. Marinescu 7 years ago committed by Julian Lam
parent b24643e0ab
commit e35d4a7d85

@ -56,7 +56,7 @@ Tags.parse = function (req, data, meta, link, callback) {
var defaultLinks = [{ var defaultLinks = [{
rel: 'icon', rel: 'icon',
type: 'image/x-icon', type: 'image/x-icon',
href: nconf.get('relative_path') + '/favicon.ico' + (Meta.config['cache-buster'] ? '?' + Meta.config['cache-buster'] : ''), href: nconf.get('relative_path') + nconf.get('upload_url') + '/system/favicon.ico' + (Meta.config['cache-buster'] ? '?' + Meta.config['cache-buster'] : ''),
}, { }, {
rel: 'manifest', rel: 'manifest',
href: nconf.get('relative_path') + '/manifest.json', href: nconf.get('relative_path') + '/manifest.json',
@ -75,31 +75,31 @@ Tags.parse = function (req, data, meta, link, callback) {
if (Meta.config['brand:touchIcon']) { if (Meta.config['brand:touchIcon']) {
defaultLinks.push({ defaultLinks.push({
rel: 'apple-touch-icon', rel: 'apple-touch-icon',
href: nconf.get('relative_path') + '/apple-touch-icon', href: nconf.get('relative_path') + nconf.get('upload_url') + '/system/touchicon-orig.png',
}, { }, {
rel: 'icon', rel: 'icon',
sizes: '36x36', sizes: '36x36',
href: nconf.get('relative_path') + '/assets/uploads/system/touchicon-36.png', href: nconf.get('relative_path') + nconf.get('upload_url') + '/system/touchicon-36.png',
}, { }, {
rel: 'icon', rel: 'icon',
sizes: '48x48', sizes: '48x48',
href: nconf.get('relative_path') + '/assets/uploads/system/touchicon-48.png', href: nconf.get('relative_path') + nconf.get('upload_url') + '/system/touchicon-48.png',
}, { }, {
rel: 'icon', rel: 'icon',
sizes: '72x72', sizes: '72x72',
href: nconf.get('relative_path') + '/assets/uploads/system/touchicon-72.png', href: nconf.get('relative_path') + nconf.get('upload_url') + '/system/touchicon-72.png',
}, { }, {
rel: 'icon', rel: 'icon',
sizes: '96x96', sizes: '96x96',
href: nconf.get('relative_path') + '/assets/uploads/system/touchicon-96.png', href: nconf.get('relative_path') + nconf.get('upload_url') + '/system/touchicon-96.png',
}, { }, {
rel: 'icon', rel: 'icon',
sizes: '144x144', sizes: '144x144',
href: nconf.get('relative_path') + '/assets/uploads/system/touchicon-144.png', href: nconf.get('relative_path') + nconf.get('upload_url') + '/system/touchicon-144.png',
}, { }, {
rel: 'icon', rel: 'icon',
sizes: '192x192', sizes: '192x192',
href: nconf.get('relative_path') + '/assets/uploads/system/touchicon-192.png', href: nconf.get('relative_path') + nconf.get('upload_url') + '/system/touchicon-192.png',
}); });
} }
plugins.fireHook('filter:meta.getLinkTags', { req: req, data: data, links: defaultLinks }, next); plugins.fireHook('filter:meta.getLinkTags', { req: req, data: data, links: defaultLinks }, next);

Loading…
Cancel
Save