From d037facb3dbab17cf68451a7c5d38d2847153956 Mon Sep 17 00:00:00 2001 From: antonydp <38143733+antonydp@users.noreply.github.com> Date: Sat, 28 Jan 2023 15:54:04 +0100 Subject: [PATCH] Update StarLiveProvider.kt Try to fix a issue. Not tested --- .../src/main/kotlin/com/lagradost/StarLiveProvider.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/StarLiveProvider/src/main/kotlin/com/lagradost/StarLiveProvider.kt b/StarLiveProvider/src/main/kotlin/com/lagradost/StarLiveProvider.kt index 5ee622d..567c958 100644 --- a/StarLiveProvider/src/main/kotlin/com/lagradost/StarLiveProvider.kt +++ b/StarLiveProvider/src/main/kotlin/com/lagradost/StarLiveProvider.kt @@ -36,7 +36,7 @@ class StarLiveProvider : MainAPI() { .map { LinkParser( fixUrl(it.selectFirst("a")?.attr("href")?:""), it.attr("class"), - it.selectFirst("span")?.text()?:"" + it.selectFirst("b")?.text()?:"" ) } val dayMatch = this.previousElementSiblings().toList().firstOrNull() { it.`is`("h3") }?.text() @@ -147,4 +147,4 @@ class StarLiveProvider : MainAPI() { @JsonProperty("matchData") val MatchData: MatchDataParser ) -} \ No newline at end of file +}