Ticket #40 (closed defect: fixed)
Incorrect channel mapping in oztivo grabber
| Reported by: | anonymous | Owned by: | |
|---|---|---|---|
| Priority: | major | Milestone: | |
| Component: | Grabber | Version: | 0.4 |
| Keywords: | oztivo grabber | Cc: |
Description
# OzTivo? grabber my $version = '0.22';
Receive the following error
- WARNING: plugin 'oztivo' returned data for unknown channel 'Animal Planet': ignored.
- WARNING: plugin 'oztivo' returned data for unknown channel 'TheBiographyChannel?': ignored.
- WARNING: plugin 'oztivo' returned data for unknown channel 'EEntertainment': ignored.
- WARNING: plugin 'oztivo' returned data for unknown channel 'PREVIEW': ignored.
This looks to be due to channel mapping error in oztivo grabber. sub setup_channel_mappings {
$d->{chan_map}->{"ANIMAL"} = "Animal Planet";
.....
$d->{chan_map}->{"BIOG"} = "TheBiographyChannel?";
.....
$d->{chan_map}->{"E!"} = "EEntertainment";
.....
Think they should be
$d->{chan_map}->{"ANIMAL"} = "AnimalPlanet?";
.....
$d->{chan_map}->{"BIOG"} = "Bio";
.....
$d->{chan_map}->{"E!"} = "E!Entertainment";
.....
Also these mapping is incorrect
$d->{chan_map}->{"ANT"} = "Antenna Pacific";
....
$d->{chan_map}->{"VH1"} = "ChannelV2";
Think they should be
$d->{chan_map}->{"ANT"} = "AntennaPacific?";
.....
$d->{chan_map}->{"VH1"} = "VH1"; $d->{chan_map}->{"V2"} = "ChannelV2";
Also missing PREVIEW channel. (Probably not really required)
