Skip to content

Commit

Permalink
BugFix/Fix Actors Not Showing in Defeated Sex Fight
Browse files Browse the repository at this point in the history
  • Loading branch information
diamondpete committed Oct 7, 2024
1 parent d64386c commit 8f6071a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
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

0 comments on commit 8f6071a

Please sign in to comment.