Fix hiding/showing watched episodes in episode list

This commit is contained in:
Synced Synapse 2016-12-16 16:08:29 +00:00
parent 3152ee540b
commit 04d901cf03
1 changed files with 1 additions and 1 deletions

View File

@ -127,7 +127,7 @@ public class TVShowEpisodeListFragment extends AbstractCursorListFragment {
// Filters
SharedPreferences preferences = PreferenceManager.getDefaultSharedPreferences(getActivity());
StringBuilder selection = new StringBuilder();
if (preferences.getBoolean(Settings.KEY_PREF_TVSHOWS_FILTER_HIDE_WATCHED, Settings.DEFAULT_PREF_TVSHOWS_FILTER_HIDE_WATCHED)) {
if (preferences.getBoolean(Settings.KEY_PREF_TVSHOW_EPISODES_FILTER_HIDE_WATCHED, Settings.DEFAULT_PREF_TVSHOW_EPISODES_FILTER_HIDE_WATCHED)) {
selection.append(MediaContract.EpisodesColumns.PLAYCOUNT)
.append("=0");
}