Skip to content

Commit 651b2c2

Browse files
committed
revert rating
1 parent 605bf2c commit 651b2c2

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

AnimeONProvider/src/main/kotlin/com/lagradost/AnimeONProvider.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ class AnimeONProvider : MainAPI() {
208208
this.showStatus = showStatus
209209
this.duration = extractIntFromString(animeJSON.episodeTime)
210210
this.year = animeJSON.releaseDate.toIntOrNull()
211-
// this.rating = animeJSON.rating.toRatingInt()
211+
this.rating = animeJSON.rating.toRatingInt()
212212
addEpisodes(DubStatus.Dubbed, episodes)
213213
addMalId(animeJSON.malId.toIntOrNull())
214214
}
@@ -232,7 +232,7 @@ class AnimeONProvider : MainAPI() {
232232
this.duration = extractIntFromString(animeJSON.episodeTime)
233233
this.year = animeJSON.releaseDate.toIntOrNull()
234234
this.backgroundPosterUrl = backgroundImage
235-
// this.rating = animeJSON.rating.toRatingInt()
235+
this.rating = animeJSON.rating.toRatingInt()
236236
addMalId(animeJSON.malId.toIntOrNull())
237237
}
238238
}

AnitubeinuaProvider/src/main/kotlin/com/lagradost/AnitubeinuaProvider.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ class AnitubeinuaProvider : MainAPI() {
183183
this.year = year
184184
this.plot = description
185185
this.tags = tags
186-
// this.rating = rating
186+
this.rating = rating
187187
addTrailer(trailer)
188188
this.recommendations = recommendations
189189
addEpisodes(DubStatus.Dubbed, dubEpisodes)

BambooUAProvider/src/main/kotlin/com/lagradost/BambooUAProvider.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ class BambooUAProvider : MainAPI() {
190190
this.year = year
191191
this.plot = description
192192
this.tags = tags
193-
// this.rating = rating
193+
this.rating = rating
194194
this.recommendations = recommendations
195195
}
196196
}

0 commit comments

Comments
 (0)