Update card.ts

This commit is contained in:
dangered wolf 2022-07-14 21:02:03 -04:00
parent 9de7a9bdfd
commit a1128121f1
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -83,7 +83,7 @@ export const renderCard = async (
console.log(str); console.log(str);
} }
/* Oh good, a non-Twitter video URL! This enables YouTube embeds*/ /* Oh good, a non-Twitter video URL! This enables YouTube embeds and stuff to just work */
} else if (typeof values.player_url !== 'undefined') { } else if (typeof values.player_url !== 'undefined') {
headers.push( headers.push(
`<meta name="twitter:player" content="${values.player_url.string_value}">`, `<meta name="twitter:player" content="${values.player_url.string_value}">`,
@ -103,7 +103,7 @@ export const renderCard = async (
values.player_height?.string_value || '720' values.player_height?.string_value || '720'
}">` }">`
); );
/* A control sequence I made up to tell status.ts that external media is being embedded */ /* A control sequence I made up to tell status.ts that external media is being embedded */
str = 'EMBED_CARD'; str = 'EMBED_CARD';
} }