From 276349e23c47ddbbc9ae5e8f070df37dba228314 Mon Sep 17 00:00:00 2001 From: Draken <131387159+dragonx943@users.noreply.github.com> Date: Sun, 18 May 2025 00:38:17 +0700 Subject: [PATCH] [YuriGarden] Replace SAFE with SUGGESTIVE --- .../kotatsu/parsers/site/vi/yurigarden/YuriGardenParser.kt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/kotlin/org/koitharu/kotatsu/parsers/site/vi/yurigarden/YuriGardenParser.kt b/src/main/kotlin/org/koitharu/kotatsu/parsers/site/vi/yurigarden/YuriGardenParser.kt index c5c673c4..e9e802ba 100644 --- a/src/main/kotlin/org/koitharu/kotatsu/parsers/site/vi/yurigarden/YuriGardenParser.kt +++ b/src/main/kotlin/org/koitharu/kotatsu/parsers/site/vi/yurigarden/YuriGardenParser.kt @@ -128,7 +128,7 @@ internal abstract class YuriGardenParser( else -> null }, description = jo.getString("description"), - contentRating = if (jo.getBooleanOrDefault("r18", false)) ContentRating.ADULT else ContentRating.SAFE, + contentRating = if (jo.getBooleanOrDefault("r18", false)) ContentRating.ADULT else ContentRating.SUGGESTIVE, source = source, rating = jo.getFloatOrDefault("rating", -5f) / 5f, ) @@ -163,7 +163,7 @@ internal abstract class YuriGardenParser( contentRating = if (json.getBooleanOrDefault("r18", false)) { ContentRating.ADULT } else { - ContentRating.SAFE + ContentRating.SUGGESTIVE }, authors = authors, tags = tags, @@ -219,4 +219,4 @@ internal abstract class YuriGardenParser( ) } } -} \ No newline at end of file +}