Update StarLiveProvider.kt

Try to fix a issue. Not tested
This commit is contained in:
antonydp 2023-01-28 15:54:04 +01:00 committed by GitHub
parent e9247d553f
commit d037facb3d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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
)
}
}