Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change 'Queue all subsequent episodes' setting to queue all episodes in a series #3658

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ class PlaybackAdvancedPreferencesScreen : OptionsFragment() {

checkbox {
setTitle(R.string.lbl_tv_queuing)
setContent(R.string.sum_tv_queuing)
bind(userPreferences, UserPreferences.mediaQueuingEnabled)
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@ class SdkPlaybackHelper(
if (userPreferences[UserPreferences.mediaQueuingEnabled] && seriesId != null) {
val response by api.tvShowsApi.getEpisodes(
seriesId = seriesId,
seasonId = mainItem.seasonId,
startItemId = mainItem.id,
isMissing = false,
limit = ITEM_QUERY_LIMIT,
Expand Down
3 changes: 1 addition & 2 deletions app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,7 @@
<string name="msg_cannot_play">This item cannot be played</string>
<string name="lbl_no_items">No items</string>
<string name="lbl_empty">Empty</string>
<string name="lbl_tv_queuing">Queue all subsequent episodes</string>
<string name="sum_tv_queuing">Add the rest of the season to the queue when playing an episode</string>
<string name="lbl_tv_queuing">Play next episode automatically</string>
<string name="lbl_search_hint">Search text (select for keyboard)</string>
<string name="lbl_play_first_unwatched">Play first unwatched</string>
<string name="lbl_mark_unplayed">Mark unplayed</string>
Expand Down
Loading