set season to 1 if title has (S01) to match python-ox

This commit is contained in:
j 2013-05-31 20:47:56 +00:00
parent 48f65e207d
commit ff82ed2863
1 changed files with 1 additions and 0 deletions

View File

@ -677,6 +677,7 @@ pandora.ui.infoView = function(data) {
} else if (episodeMatch) {
data.seriesTitle = episodeMatch[1].trim();
data.episodeTitle = episodeMatch[2].trim();
data.season = 1;
}
return data;
}