Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BugFix/Fix Actors Not Showing in Defeated Sex Fight #1961

Merged
merged 1 commit into from
Oct 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion Contents/Code/networkRomero.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,11 @@ def update(metadata, lang, siteNum, movieGenres, movieActors, art):
movieGenres.addGenre(genreName)

# Actor(s)
for actorLink in detailsPageElements.xpath('//div[contains(@class, "tagsmodels")][./img[@alt="model icon"]]//a'):
if siteNum == 896:
actorXpath = '//div[contains(@class, "tagsmodels")]//a'
else:
actorXpath = '//div[contains(@class, "tagsmodels")][./img[@alt="model icon"]]//a'
for actorLink in detailsPageElements.xpath(actorXpath):
actorName = actorLink.text_content().strip()
actorPhotoURL = ''

Expand Down
2 changes: 0 additions & 2 deletions docs/sitelist.md
Original file line number Diff line number Diff line change
Expand Up @@ -477,8 +477,6 @@ If you're having difficulty finding the SceneID, double-check [PAsiteList.py](..
- Hot Legs & Feet
- House of Taboo
- Only Blowjob
+ #### DefeatedSexFight | ✅
+ #### DefeatedXXX | ✅
+ #### Deranged Dollars | ✅
- Assylum
- SlaveMouth
Expand Down
Loading