FIX: allows youtube embeds to respect the t param (#21295)

This commit is contained in:
Joffrey JAFFEUX
2023-04-28 15:46:27 +02:00
committed by GitHub
parent 36d388b57f
commit 69696843c6
5 changed files with 18 additions and 2 deletions

View File

@ -8,8 +8,9 @@ export default function getVideoAttributes(cooked) {
const thumbnail = img?.getAttribute("src");
const dominantColor = img?.dataset?.dominantColor;
const title = cooked.dataset.videoTitle;
const startTime = cooked.dataset.videoStartTime || 0;
const providerName = cooked.dataset.providerName;
const id = cooked.dataset.videoId;
return { url, thumbnail, title, providerName, id, dominantColor };
return { url, thumbnail, title, providerName, id, dominantColor, startTime };
}