Only show the YouTube thumbnail image if the video is not embedded.
This commit is contained in:
parent
f0c44b172f
commit
2b9200e3c1
|
|
@ -25,8 +25,8 @@ module.exports = async (ctx) => {
|
|||
return {
|
||||
title: snippet.title,
|
||||
description: `${
|
||||
embed ? '<iframe id="ytplayer" type="text/html" width="640" height="360" src="https://www.youtube.com/embed/' + videoId + '" frameborder="0" allowfullscreen></iframe>' : ''
|
||||
}${utils.formatDescription(snippet.description)}<img src="${img.url}">`,
|
||||
embed ? '<iframe id="ytplayer" type="text/html" width="640" height="360" src="https://www.youtube.com/embed/' + videoId + '" frameborder="0" allowfullscreen></iframe>' : '<img src="' + img.url + '">'
|
||||
}${utils.formatDescription(snippet.description)}`,
|
||||
pubDate: new Date(snippet.publishedAt).toUTCString(),
|
||||
link: `https://www.youtube.com/watch?v=${videoId}`,
|
||||
};
|
||||
|
|
|
|||
|
|
@ -24,8 +24,8 @@ module.exports = async (ctx) => {
|
|||
const img = utils.getThumbnail(snippet.thumbnails);
|
||||
return {
|
||||
title: snippet.title,
|
||||
description: `${embed ? '<iframe id="ytplayer" type="text/html" width="640" height="360" src="https://www.youtube.com/embed/' + videoId + '" frameborder="0" allowfullscreen></iframe>' : ''}
|
||||
${utils.formatDescription(snippet.description)}<img src="${img.url}">`,
|
||||
description: `${embed ? '<iframe id="ytplayer" type="text/html" width="640" height="360" src="https://www.youtube.com/embed/' + videoId + '" frameborder="0" allowfullscreen></iframe>' : '<img src="' + img.url + '">'}
|
||||
${utils.formatDescription(snippet.description)}`,
|
||||
pubDate: new Date(snippet.publishedAt).toUTCString(),
|
||||
link: `https://www.youtube.com/watch?v=${videoId}`,
|
||||
author: authors[index].snippet.channelTitle,
|
||||
|
|
|
|||
|
|
@ -25,8 +25,8 @@ module.exports = async (ctx) => {
|
|||
return {
|
||||
title: snippet.title,
|
||||
description: `${
|
||||
embed ? '<iframe id="ytplayer" type="text/html" width="640" height="360" src="https://www.youtube.com/embed/' + videoId + '" frameborder="0" allowfullscreen></iframe>' : ''
|
||||
}${utils.formatDescription(snippet.description)}<img src="${img.url}">`,
|
||||
embed ? '<iframe id="ytplayer" type="text/html" width="640" height="360" src="https://www.youtube.com/embed/' + videoId + '" frameborder="0" allowfullscreen></iframe>' : '<img src="' + img.url + '">'
|
||||
}${utils.formatDescription(snippet.description)}`,
|
||||
pubDate: new Date(snippet.publishedAt).toUTCString(),
|
||||
link: `https://www.youtube.com/watch?v=${videoId}`,
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in New Issue