Filmaffinity Espanol not working

If you made a script you can offer it to the others here, or ask help to improve it. You can also report here bugs & problems with existing scripts.
Post Reply
leteck
Posts: 1
Joined: 2015-08-28 15:27:24

Filmaffinity Espanol not working

Post by leteck »

Did somebody has a filmaffinity script working?
antp
Site Admin
Posts: 9636
Joined: 2002-05-30 10:13:07
Location: Brussels
Contact:

Post by antp »

The current version seems to work (2.85)
If you have an older one try updating it by runnning the "Update scripts" script (first in the list).
carlosmg2
Posts: 39
Joined: 2009-08-18 19:21:08
Contact:

Post by carlosmg2 »

it works except the movie rating
JuanRa_007
Posts: 21
Joined: 2014-06-08 09:08:31

Post by JuanRa_007 »

Una solución rápida para que funcione:

Cambiar el código:

Code: Select all

// Rating
LineNr := FindLine('<div id="movie-rat-avg" itemprop="ratingValue">', Page, LineNr);
por

Code: Select all

// Rating
LineNr := FindLine('<div id="movie-rat-avg" itemprop="ratingValue"', Page, LineNr);
Es decir, solo quitar el símbolo ">" al final de la cadena de búsqueda, porque le han incluido un "contend" al bloque "div" que lo contiene el campo de "rating".

Saludos.
antp
Site Admin
Posts: 9636
Joined: 2002-05-30 10:13:07
Location: Brussels
Contact:

Post by antp »

Thanks
Post Reply