Skip to content

Commit

Permalink
Overview: display "Special Episodes" instead of "Season 0"
Browse files Browse the repository at this point in the history
  • Loading branch information
UweTrottmann committed Mar 14, 2024
1 parent 1d259ec commit 53b416d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ Version 72
* 🔧 Lists: replace favorite with set next watched button to match Shows section.
* 🔨 Overview: prevent skipping already watched episodes which would remove existing number of times watched.
* 🔨 Episodes: allow to re-watch from episode list, integrate all options into watched button.
* 🔧 Overview: display "Special Episodes" instead of "Season 0" for the next episode as well.

#### 72.0.5 🧪
*2024-03-08*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,11 @@ class OverviewFragment() : Fragment(), EpisodeActionsContract {

// number
val infoText = StringBuilder()
infoText.append(getString(R.string.season_number, season))
if (season == 0) {
infoText.append(getString(R.string.specialseason))
} else {
infoText.append(getString(R.string.season_number, season))
}
infoText.append(" ")
infoText.append(getString(R.string.episode_number, number))
val episodeAbsoluteNumber = episode.absoluteNumber
Expand Down

0 comments on commit 53b416d

Please sign in to comment.