From 066f19510c32ff36962c521d86b2d13d1e6a024b Mon Sep 17 00:00:00 2001 From: hexated Date: Sun, 11 Sep 2022 20:33:05 +0700 Subject: [PATCH] fixed recommendation GoodPorn --- GoodPorn/src/main/kotlin/com/hexated/GoodPorn.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GoodPorn/src/main/kotlin/com/hexated/GoodPorn.kt b/GoodPorn/src/main/kotlin/com/hexated/GoodPorn.kt index 96c79de3..52fcce5b 100644 --- a/GoodPorn/src/main/kotlin/com/hexated/GoodPorn.kt +++ b/GoodPorn/src/main/kotlin/com/hexated/GoodPorn.kt @@ -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() }