use format instead of type in anilist search

As per anilist graphql docs, `type` refers to whether anime/manga and is
redundant (since we already limit it to `MANGA`). What we actually want
is `format` which includes whether the media is a One-shot or Manga

This should help in making search a bit better as one no longer needs to
rely on the Date to figure out if its the One-shot entry or the Manga
entry
This commit is contained in:
curche 2021-08-18 11:26:06 +05:30
parent faef35ec47
commit 6f0ba48886
2 changed files with 4 additions and 4 deletions

View File

@ -180,7 +180,7 @@ class AnilistApi(val client: OkHttpClient, interceptor: AnilistInterceptor) {
|coverImage {
|large
|}
|type
|format
|status
|chapters
|description
@ -267,7 +267,7 @@ class AnilistApi(val client: OkHttpClient, interceptor: AnilistInterceptor) {
struct["title"]!!.jsonObject["romaji"]!!.jsonPrimitive.content,
struct["coverImage"]!!.jsonObject["large"]!!.jsonPrimitive.content,
struct["description"]!!.jsonPrimitive.contentOrNull,
struct["type"]!!.jsonPrimitive.content,
struct["format"]!!.jsonPrimitive.content.replace("_", "-"),
struct["status"]!!.jsonPrimitive.contentOrNull ?: "",
parseDate(struct, "startDate"),
struct["chapters"]!!.jsonPrimitive.intOrNull ?: 0

View File

@ -13,7 +13,7 @@ data class ALManga(
val title_romaji: String,
val image_url_lge: String,
val description: String?,
val type: String,
val format: String,
val publishing_status: String,
val start_date_fuzzy: Long,
val total_chapters: Int
@ -27,7 +27,7 @@ data class ALManga(
summary = description ?: ""
tracking_url = AnilistApi.mangaUrl(media_id)
publishing_status = this@ALManga.publishing_status
publishing_type = type
publishing_type = format
if (start_date_fuzzy != 0L) {
start_date = try {
val outputDf = SimpleDateFormat("yyyy-MM-dd", Locale.US)