Skip to content

Commit

Permalink
releaseDate
Browse files Browse the repository at this point in the history
  • Loading branch information
Dreamlinerm committed Jan 7, 2025
1 parent 7603cbf commit 9e0693d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion firefox/skipper.js
Original file line number Diff line number Diff line change
Expand Up @@ -559,7 +559,7 @@ if (isPrimeVideo || isNetflix || isDisney || isHotstar || isCrunchyroll || isHBO
if (data?.score >= 0) {
let releaseDate = "";
if (settings.Video?.showYear && data?.release_date) {
const releaseDate = new Date(data?.release_date)?.getFullYear() + "-";
releaseDate = new Date(data?.release_date)?.getFullYear() + "-";
// const year = new Date(data?.release_date)?.getYear();
// releaseDate = year >= 100 ? (year + " ").substring(1) : year + " ";
}
Expand Down

0 comments on commit 9e0693d

Please sign in to comment.