Skip to content

Commit

Permalink
Fixed #136 Multipart episodes are misnamed
Browse files Browse the repository at this point in the history
  • Loading branch information
Inrixia committed Jan 27, 2023
1 parent 1dcded9 commit 04b90a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/Video.ts
Expand Up @@ -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;
Expand Down

0 comments on commit 04b90a3

Please sign in to comment.