Fixed Movie rename extension.

This commit is contained in:
moonstar-x 2021-06-12 02:04:54 -05:00
parent 20e304aa97
commit 3b8c037a27

View File

@ -15,7 +15,7 @@ class Movie extends Media {
}
getDownloadFilename(ext) {
return `${this.name} (${this.year})${ext}`;
return `${this.name} (${this.year}).${ext}`;
}
}