fixed recommendation GoodPorn

This commit is contained in:
hexated 2022-09-11 20:33:05 +07:00
parent 1504bfe13f
commit 066f19510c
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ class GoodPorn : MainAPI() {
val description = document.select("div.info div:nth-child(2)").text().trim()
val actors = document.select("div.info div:nth-child(6) > a").map { it.text() }
val recommendations =
document.select("div.list_videos_related_videos_items div.item").mapNotNull {
document.select("div#list_videos_related_videos_items div.item").mapNotNull {
it.toSearchResult()
}