Subject: | "Kind" of movies default to 'Movie' |
Previously the 'kind' of movies was returned as 'movie' by default.
This appears to have been changed to 'Movie'. Not too important but it
looks affects my code that explicitly checks for the lower case variant.
In sub title:
$elf->{_kind} = 'Movie' unless $self->{_kind}; # Default kind should
be movie
should probably be:
$self->{_kind} = 'movie' unless $self->{_kind}; # Default kind should
be movie
Similar problem with:
http://www.imdb.com/title/tt0118692/
which returns 'Video'.
I think that particular problem is that %FILM_KIND needs updating to
have a video entry:
Video => 'video movie',
Possibly related, searching for '10th Kingdom' or 'The Triangle' 2005
returns entries which have kind set to 'tv series', but which list on
the IMDB page as 'TV mini series':
http://www.imdb.com/title/tt0452573/
http://www.imdb.com/title/tt0207275/
Probably that's because of the "s in the name; the intention, from the
%FILM_KIND appeared to be to return the mini-series differently - I'm
not sure if that's a good or bad behaviour.