damienlangg / SimpleMovieCatalog

Simple Movie Catalog will scan a given directory for movies, query imdb for info and generate a catalog as a html page which offers sorting, filtering and grouping of found movies by different criteria.
Other
23 stars 13 forks source link

plot/summary extraction broken #13

Open MeisterP opened 6 years ago

MeisterP commented 6 years ago

plot/summary only shows ?. I guess it's related to changes on the IMDb website.

the following files are .html files renamed to .txt to make github happy. old-imdb-2614684.txt -> extraction is working new-imdb-2614684.txt -> extraction is broken

merentitis commented 5 years ago

lib/IMDB_Movie.pm:

768 - my $plot = _get_info(shift, "storyline", "h2", "/p", "em", "span") or return undef;
768 + my $plot = _get_info(shift, "storyline", "h2", "/span") or return undef;
manuel-kuehner commented 5 years ago

@MeisterP Did the proposed code work for you? @merentitis Thanks for the help.

MeisterP commented 5 years ago

@MeisterP Did the proposed code work for you?

Yes, it did fix the issue for me.