Fixed bug caused by new multi-video code

This commit is contained in:
dangered wolf 2022-08-13 02:53:37 -04:00
parent 49b854edda
commit c5c5b82916
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -125,6 +125,7 @@ export const handleStatus = async (
sizeMultiplier = 2;
}
if (videos.length > 1) {
const videoCounter = Strings.VIDEO_COUNT.format({
number: String(videos.indexOf(video) + 1),
total: String(videos.length)
@ -135,11 +136,12 @@ export const handleStatus = async (
? videoCounter
: `${authorText}${authorText ? ' ― ' : ''}${videoCounter}`;
let siteName = `${Constants.BRANDING_NAME} - ${videoCounter}`;
siteName = `${Constants.BRANDING_NAME} - ${videoCounter}`;
if (engagementText) {
siteName = `${Constants.BRANDING_NAME} - ${engagementText} - ${videoCounter}`;
}
}
headers.push(`<meta property="og:site_name" content="${siteName}"/>`);