mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 10:30:55 +01:00
Fixed bug caused by new multi-video code
This commit is contained in:
parent
49b854edda
commit
c5c5b82916
1 changed files with 16 additions and 14 deletions
|
@ -125,20 +125,22 @@ export const handleStatus = async (
|
|||
sizeMultiplier = 2;
|
||||
}
|
||||
|
||||
const videoCounter = Strings.VIDEO_COUNT.format({
|
||||
number: String(videos.indexOf(video) + 1),
|
||||
total: String(videos.length)
|
||||
});
|
||||
|
||||
authorText =
|
||||
authorText === Strings.DEFAULT_AUTHOR_TEXT
|
||||
? videoCounter
|
||||
: `${authorText}${authorText ? ' ― ' : ''}${videoCounter}`;
|
||||
|
||||
let siteName = `${Constants.BRANDING_NAME} - ${videoCounter}`;
|
||||
|
||||
if (engagementText) {
|
||||
siteName = `${Constants.BRANDING_NAME} - ${engagementText} - ${videoCounter}`;
|
||||
if (videos.length > 1) {
|
||||
const videoCounter = Strings.VIDEO_COUNT.format({
|
||||
number: String(videos.indexOf(video) + 1),
|
||||
total: String(videos.length)
|
||||
});
|
||||
|
||||
authorText =
|
||||
authorText === Strings.DEFAULT_AUTHOR_TEXT
|
||||
? videoCounter
|
||||
: `${authorText}${authorText ? ' ― ' : ''}${videoCounter}`;
|
||||
|
||||
siteName = `${Constants.BRANDING_NAME} - ${videoCounter}`;
|
||||
|
||||
if (engagementText) {
|
||||
siteName = `${Constants.BRANDING_NAME} - ${engagementText} - ${videoCounter}`;
|
||||
}
|
||||
}
|
||||
|
||||
headers.push(`<meta property="og:site_name" content="${siteName}"/>`);
|
||||
|
|
Loading…
Add table
Reference in a new issue