Backpack.Studio
Results
3
comments of
Backpack.Studio
the same ptoblem here, invalid season number 1 instead of proper number.
I guess problem is hidden here: ``` public function get_season_for_episode_id($episode_id) { foreach ($this->data as $season_id => $episode_ids) { if (in_array($episode_id, $episode_ids)) { return Season::find_by_id($season_id); } } return null; } ```
This issue is related to the issue #1064