Skip to content

Commit

Permalink
Fix error
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrews54757 committed Oct 7, 2024
1 parent 5282cee commit 5e18cab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chrome/background/background.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -736,7 +736,7 @@ function getMediaInfoFromTab(tab) {
title = words.join(' ');

let season = null;
const episode = null;
let episode = null;
// Remove season #, episode #, s#, e#
title = title.replace(/\bseason\s*([0-9]+)/gi, (match, p1) => {
season = parseInt(p1);
Expand Down

0 comments on commit 5e18cab

Please sign in to comment.