We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Original issue 1108 created by Omertron on 2009-11-23T20:14:07.000Z:
imdb seems to have altered the layout for "Release date"
Now looks like <h5>Release Date:</h5> <div class="info-content"> 2 October 2009 (UK)
So we end up with this in xml file: <releaseDate>div class="info-content"</releaseDate>
Adding a skip value of 1 to parser seems to fix it: movie.setReleaseDate(HTMLTools.extractTag(xml, "<h5>Release Date:</h5>", 1));
"Runtime" also has this "info-content" tag added: <h5>Runtime:</h5> <div class="info-content"> 108 min
and possibly others.
The text was updated successfully, but these errors were encountered:
Comment #1 originally posted by Omertron on 2009-11-24T08:38:48.000Z:
Should be fixed in r1211
Sorry, something went wrong.
No branches or pull requests
Original issue 1108 created by Omertron on 2009-11-23T20:14:07.000Z:
imdb seems to have altered the layout for "Release date"
Now looks like
<h5>Release Date:</h5>
<div class="info-content">
2 October 2009 (UK)
So we end up with this in xml file:
<releaseDate>div class="info-content"</releaseDate>
Adding a skip value of 1 to parser seems to fix it:
movie.setReleaseDate(HTMLTools.extractTag(xml, "<h5>Release Date:</h5>", 1));
"Runtime" also has this "info-content" tag added:
<h5>Runtime:</h5>
<div class="info-content">
108 min
and possibly others.
The text was updated successfully, but these errors were encountered: