Skip to content

Commit

Permalink
Fix animes seasons
Browse files Browse the repository at this point in the history
  • Loading branch information
Arial-Z committed Feb 16, 2024
1 parent ab4079d commit 72c6945
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -240,10 +240,10 @@ function get-animes-season-year () {
if [[ $month_season -le 3 ]]
then
name_season=Winter
elif [[ $month_season -ge 4 && $seasons_month -le 6 ]]
elif [[ $month_season -ge 4 && $month_season -le 6 ]]
then
name_season=Spring
elif [[ $month_season -ge 7 && $seasons_month -le 9 ]]
elif [[ $month_season -ge 7 && $month_season -le 9 ]]
then
name_season=Summer
elif [[ $month_season -ge 10 ]]
Expand Down

0 comments on commit 72c6945

Please sign in to comment.