-
Notifications
You must be signed in to change notification settings - Fork 481
Letterboxd plugin does not paginate correctly #2194
Copy link
Copy link
Closed
Description
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:
Flexget/flexget/plugins/input/letterboxd.py
Line 137 in 83bc8dc
| 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.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels