mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-10 06:54:21 +00:00
hopefully fixed letterboxed IDs
This commit is contained in:
parent
f422f428e7
commit
88369c3802
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@ class Letterboxd:
|
|||
|
||||
def _parse_list(self, list_url, language):
|
||||
response = self.config.get_html(list_url, headers=util.header(language))
|
||||
letterboxd_ids = response.xpath("//li[@class='poster-container']/div/@data-film-id")
|
||||
letterboxd_ids = response.xpath("//li[contains(@class, 'poster-container')]/div/@data-film-id")
|
||||
items = []
|
||||
for letterboxd_id in letterboxd_ids:
|
||||
slugs = response.xpath(f"//div[@data-film-id='{letterboxd_id}']/@data-film-slug")
|
||||
|
|
Loading…
Reference in a new issue