mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-06 02:50:54 +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;
|
sizeMultiplier = 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
const videoCounter = Strings.VIDEO_COUNT.format({
|
if (videos.length > 1) {
|
||||||
number: String(videos.indexOf(video) + 1),
|
const videoCounter = Strings.VIDEO_COUNT.format({
|
||||||
total: String(videos.length)
|
number: String(videos.indexOf(video) + 1),
|
||||||
});
|
total: String(videos.length)
|
||||||
|
});
|
||||||
authorText =
|
|
||||||
authorText === Strings.DEFAULT_AUTHOR_TEXT
|
authorText =
|
||||||
? videoCounter
|
authorText === Strings.DEFAULT_AUTHOR_TEXT
|
||||||
: `${authorText}${authorText ? ' ― ' : ''}${videoCounter}`;
|
? videoCounter
|
||||||
|
: `${authorText}${authorText ? ' ― ' : ''}${videoCounter}`;
|
||||||
let siteName = `${Constants.BRANDING_NAME} - ${videoCounter}`;
|
|
||||||
|
siteName = `${Constants.BRANDING_NAME} - ${videoCounter}`;
|
||||||
if (engagementText) {
|
|
||||||
siteName = `${Constants.BRANDING_NAME} - ${engagementText} - ${videoCounter}`;
|
if (engagementText) {
|
||||||
|
siteName = `${Constants.BRANDING_NAME} - ${engagementText} - ${videoCounter}`;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
headers.push(`<meta property="og:site_name" content="${siteName}"/>`);
|
headers.push(`<meta property="og:site_name" content="${siteName}"/>`);
|
||||||
|
|
Loading…
Add table
Reference in a new issue