fixed thumbnail issue
This commit is contained in:
parent
bd9b181d62
commit
ac7d2b3bd9
1 changed files with 5 additions and 2 deletions
|
@ -69,7 +69,9 @@ module.exports = {
|
||||||
return new Handlebars.SafeString(gaCode);
|
return new Handlebars.SafeString(gaCode);
|
||||||
},
|
},
|
||||||
addOpenGraph (claim) {
|
addOpenGraph (claim) {
|
||||||
const { ogTitle, contentType, ogDescription, thumbnail, showUrl, source, ogThumbnailContentType } = createOpenGraphDataFromClaim(claim, claimDefaults.defaultTitle, claimDefaults.defaultDescription);
|
const { ogTitle, ogDescription, showUrl, source, ogThumbnailContentType } = createOpenGraphDataFromClaim(claim, claimDefaults.defaultTitle, claimDefaults.defaultDescription);
|
||||||
|
const thumbnail = claim.thumbnail;
|
||||||
|
const contentType = claim.contentType;
|
||||||
const ogTitleTag = `<meta property="og:title" content="${ogTitle}" />`;
|
const ogTitleTag = `<meta property="og:title" content="${ogTitle}" />`;
|
||||||
const ogUrlTag = `<meta property="og:url" content="${showUrl}" />`;
|
const ogUrlTag = `<meta property="og:url" content="${showUrl}" />`;
|
||||||
const ogSiteNameTag = `<meta property="og:site_name" content="${site.title}" />`;
|
const ogSiteNameTag = `<meta property="og:site_name" content="${site.title}" />`;
|
||||||
|
@ -96,8 +98,9 @@ module.exports = {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
addTwitterCard (claim) {
|
addTwitterCard (claim) {
|
||||||
const { contentType, embedUrl, directFileUrl } = createOpenGraphDataFromClaim(claim, claimDefaults.defaultTitle, claimDefaults.defaultDescription);
|
const { embedUrl, directFileUrl } = createOpenGraphDataFromClaim(claim, claimDefaults.defaultTitle, claimDefaults.defaultDescription);
|
||||||
const basicTwitterTags = `<meta name="twitter:site" content="@spee_ch" >`;
|
const basicTwitterTags = `<meta name="twitter:site" content="@spee_ch" >`;
|
||||||
|
const contentType = claim.contentType;
|
||||||
if (contentType === 'video/mp4') {
|
if (contentType === 'video/mp4') {
|
||||||
const twitterName = '<meta name="twitter:card" content="player" >';
|
const twitterName = '<meta name="twitter:card" content="player" >';
|
||||||
const twitterPlayer = `<meta name="twitter:player" content="${embedUrl}" >`;
|
const twitterPlayer = `<meta name="twitter:player" content="${embedUrl}" >`;
|
||||||
|
|
Loading…
Reference in a new issue