Skip to content

Commit

Permalink
added year next to rating
Browse files Browse the repository at this point in the history
  • Loading branch information
Dreamlinerm committed Dec 28, 2024
1 parent fdea568 commit 1bbffdc
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 @@ -557,7 +557,7 @@ if (isPrimeVideo || isNetflix || isDisney || isHotstar || isCrunchyroll || isHBO

// div.id = "imdb";
if (data?.score >= 0) {
const releaseDate = new Date(data?.release_date)?.getFullYear() + "-";
const releaseDate = data?.release_date ? new Date(data?.release_date)?.getFullYear() + "-" : "";
// const year = new Date(data?.release_date)?.getYear();
// let releaseDate = "";
// if (year) {
Expand Down

0 comments on commit 1bbffdc

Please sign in to comment.