Skip to content

Commit

Permalink
fix(ShikimoriRepository): autumn season days range correction
Browse files Browse the repository at this point in the history
  • Loading branch information
urFate committed Sep 6, 2024
1 parent d27c080 commit a715d67
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ object ShikimoriRepository : AbstractCatalogRepository("Shikimori", "https://shi
return when (dayOfYear) {
in 1 until 65 -> "winter_$year"
in 65 until 186 -> "spring_$year"
in 186 until 249 -> "summer_$year"
in 186 until 279 -> "summer_$year"
else -> "fall_$year"
}
}
Expand Down

0 comments on commit a715d67

Please sign in to comment.