Ticket #40 (closed defect: fixed)

Opened 6 years ago

Last modified 6 years ago

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)

Change History

Changed 6 years ago by lincoln

  • status changed from new to closed
  • resolution set to fixed

Thanks! committed fix in [626]

Note: See TracTickets for help on using tickets.