my $hr = $tvdb->getSeriesBanners($title, 'season', 'seasonwide'); my $rating = 0; my $bwurl; my @keys = keys %$hr; foreach my $id (@keys) { my $hr2 = $hr->{$id}; if (($hr2->{Season} == $seasonnum) && ($hr2->{Rating} > $rating)) { $rating = $hr2->{Rating}; $bwurl = $hr2->{BannerPath}; } } if ($bwurl) { debug(1, "Using highest rated Series Banner\n"); return "http://thetvdb.com/banners/_cache/$bwurl"; }