You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems that the iTunes feeds are now returning both trailers and movie clips. The scraper appears to not differentiate, and given the 'clip' is often first, plays that rather than the 'trailer'.
I seemed to fix this by adding an extra check into the get_trailers function of the itunes scraper.py
Added at 127:
if clip['title'] == 'Trailer':
The text was updated successfully, but these errors were encountered:
It seems that the iTunes feeds are now returning both trailers and movie clips. The scraper appears to not differentiate, and given the 'clip' is often first, plays that rather than the 'trailer'.
I seemed to fix this by adding an extra check into the get_trailers function of the itunes scraper.py
Added at 127:
if clip['title'] == 'Trailer':
The text was updated successfully, but these errors were encountered: