Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
alex committed Jan 6, 2024
1 parent 99aeb29 commit b779e59
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions SoraStream/src/main/kotlin/com/hexated/SoraStream.kt
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ open class SoraStream : TmdbProvider() {
this.backgroundPosterUrl = bgPoster
this.year = year
this.plot = res.overview
this.tags = keywords
this.tags = keywords ?: genres
this.rating = rating
this.showStatus = getStatus(res.status)
this.recommendations = recommendations
Expand All @@ -281,7 +281,7 @@ open class SoraStream : TmdbProvider() {
this.year = year
this.plot = res.overview
this.duration = res.runtime
this.tags = keywords
this.tags = keywords ?: genres
this.rating = rating
this.recommendations = recommendations
this.actors = actors
Expand Down
2 changes: 1 addition & 1 deletion TimefourTv/src/main/kotlin/com/hexated/TimefourTv.kt
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ class TimefourTv : MainAPI() {
items.mapNotNull {
Episode(
data = it.channels?.toJson() ?: return@mapNotNull null,
name = "${it.event} - Live",
name = "${it.event} ",
description = it.time,
posterUrl = detailPoster,
)
Expand Down
2 changes: 1 addition & 1 deletion YugenAnime/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ cloudstream {
"OVA",
)

iconUrl = "https://www.google.com/s2/favicons?domain=yugenanime.sx&sz=%size%"
iconUrl = "https://yugenanime.sx/static/img/favicon-32x32.png"
}

0 comments on commit b779e59

Please sign in to comment.