Page 1 of 1

IMDB - cannot import number of votes

Posted: 2019-01-12 23:08:46
by StefMir
using script 4.013

I cannot download number of votes (see images below)

Image

Image

Re: IMDB - cannot import number of votes

Posted: 2019-01-13 12:22:19
by antp
I have a few other bugs in the IMDb script to check, I'll try to do that some day...
(but if someone else has time, don't hesitate)

Re: IMDB - cannot import number of votes

Posted: 2019-01-14 22:31:39
by athe
You must change this line
Value := TextBetween(PageText, '<a href="ratings" class="tn15more">', '</a>');
to this one

Code: Select all

Value := TextBetween(PageText, 'total-votes">(', ')<');
in the section

Code: Select all

if GetOption('UserRatings') > 0 then
    begin
    Value := TextBetween(PageText, 'total-votes">(', ')<');
    //  Value := TextBetween(PageText, '<a href="ratings" class="tn15more">', '</a>');
      if Value <> '' then
        Value := 'User Rating: ' + GetField(fieldRating) + ' out of 10  (with ' + Value + ')';
      if (GetOption('UserRatings') = 1) and (Value <> '') and (CanSetField(fieldMediaType)) then
        SetField(fieldMediaType, Value);
      if (GetOption('UserRatings') = 2) and (Value <> '') then
        SetField(fieldComments, GetField(fieldComments) + #13#10 + #13#10 + Value);
    end;

Re: IMDB - cannot import number of votes

Posted: 2019-01-15 08:37:59
by antp
Thanks, I updated the script as version 4.014