Improve Discord quote handling for videos

This commit is contained in:
dangered wolf 2023-09-12 05:51:42 -04:00
parent b7125a4019
commit 3c9443988e
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -1,4 +1,5 @@
import { Constants } from '../constants';
import { handleQuote } from '../helpers/quote';
import { Strings } from '../strings';
export const renderVideo = (
@ -42,6 +43,10 @@ export const renderVideo = (
instructions.authorText = tweet.translation?.text || text || '';
if (instructions.authorText.length < 40 && tweet.quote) {
instructions.authorText += `\n${handleQuote(tweet.quote)}`;
}
/* Push the raw video-related headers */
instructions.addHeaders = [
`<meta property="twitter:player:height" content="${video.height * sizeMultiplier}"/>`,