From 04b90a388b25086e85e27e0ef678321583ecff09 Mon Sep 17 00:00:00 2001 From: Inrixia Date: Fri, 27 Jan 2023 14:39:32 +1300 Subject: [PATCH] Fixed #136 Multipart episodes are misnamed --- src/lib/Video.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/Video.ts b/src/lib/Video.ts index dad111c..ea90103 100644 --- a/src/lib/Video.ts +++ b/src/lib/Video.ts @@ -78,7 +78,7 @@ export default class Video { /** * Get the suffix for a video file if there are multiple videoAttachments for this video */ - private multiPartSuffix = (attachmentIndex: string | number): string => `${this.videoAttachments.length !== 1 ? ` - Part ${+attachmentIndex + 1}` : ""}`; + private multiPartSuffix = (attachmentIndex: string | number): string => `${this.videoAttachments.length !== 1 ? ` - part${+attachmentIndex + 1}` : ""}`; get expectedSize(): number | undefined { return this.channel.lookupVideoDB(this.guid).expectedSize;