Expected behaviour:
When using a letterboxd list as input, lists with more than 100 entries should produce more than 100 entries in flexget.
Actual behaviour:
Letterboxd input is only able to generate <=100 entries.
Steps to reproduce:
- Step 1: Configure a letterboxd input for a list that contains > 100 entries
- Step 2: Run task and note that only 100 entries are generated.
Additional information:
I see the problem:
|
next_page = soup.find(class_='paginate-next') |
The actual markup on page is (as of this writing):
<div class="paginate-nextprev">
<a class="next" href="/usrid/list/listname/page/pagenum/">Next</a>
</div>
So the query should actually be '.paginate-nextprev .next' not '.paginate-next'. I'm assuming they changed their site.
Expected behaviour:
When using a letterboxd list as input, lists with more than 100 entries should produce more than 100 entries in flexget.
Actual behaviour:
Letterboxd input is only able to generate <=100 entries.
Steps to reproduce:
Additional information:
I see the problem:
Flexget/flexget/plugins/input/letterboxd.py
Line 137 in 83bc8dc
The actual markup on page is (as of this writing):
So the query should actually be '.paginate-nextprev .next' not '.paginate-next'. I'm assuming they changed their site.