From c5c5b82916e081a75c59a8111819ddc3ea167cab Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Sat, 13 Aug 2022 02:53:37 -0400 Subject: [PATCH] Fixed bug caused by new multi-video code --- src/status.ts | 30 ++++++++++++++++-------------- 1 file changed, 16 insertions(+), 14 deletions(-) diff --git a/src/status.ts b/src/status.ts index 29fbeab..b98a1ba 100644 --- a/src/status.ts +++ b/src/status.ts @@ -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(``);