Skip to content

Commit

Permalink
chore: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
aklinker1 committed Jun 15, 2022
1 parent 005ac64 commit b1f17df
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,9 @@ async function getEpisodeInfo() {
})
.find(json => json?.['@type'] === 'TVEpisode')?.partOfSeason?.seasonNumber;
if (int != null) season = String(int);
} catch (err) {}
} catch (err) {
// noop
}

return {
show: show || undefined,
Expand Down

0 comments on commit b1f17df

Please sign in to comment.