mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-04 10:00:55 +01:00
Improve Discord quote handling for videos
This commit is contained in:
parent
b7125a4019
commit
3c9443988e
1 changed files with 5 additions and 0 deletions
|
@ -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}"/>`,
|
||||
|
|
Loading…
Add table
Reference in a new issue