Anilist/Kitsu Fixes

This commit is contained in:
len 2016-12-23 16:15:09 +01:00
parent 2c6f64c5ae
commit d09eca7833
2 changed files with 3 additions and 2 deletions

View File

@ -51,6 +51,7 @@ class AnilistApi(val client: OkHttpClient, interceptor: AnilistInterceptor) {
.map { list ->
list.filter { it.type != "Novel" }.map { it.toTrack() }
}
.onErrorReturn { emptyList() }
}
fun getList(username: String): Observable<List<Track>> {

View File

@ -9,7 +9,7 @@ import eu.kanade.tachiyomi.data.track.TrackManager
open class KitsuManga(obj: JsonObject) {
val id by obj.byInt
val canonicalTitle by obj["attributes"].byString
val chapterCount = obj["attributes"]["chapterCount"].nullInt
val chapterCount = obj["attributes"].obj.get("chapterCount").nullInt
@CallSuper
open fun toTrack() = Track.create(TrackManager.KITSU).apply {
@ -22,7 +22,7 @@ open class KitsuManga(obj: JsonObject) {
class KitsuLibManga(obj: JsonObject, manga: JsonObject) : KitsuManga(manga) {
val remoteId by obj.byInt("id")
val status by obj["attributes"].byString
val rating = obj["attributes"]["rating"].nullString
val rating = obj["attributes"].obj.get("rating").nullString
val progress by obj["attributes"].byInt
override fun toTrack() = super.toTrack().apply {