Skip to content

Commit

Permalink
Fix not using default stream selection option as fallback
Browse files Browse the repository at this point in the history
  • Loading branch information
MoojMidge committed Mar 28, 2024
1 parent 8feb985 commit 32ee4b5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ def stream_select(self, value=None):
value = self.get_int(settings.MPD_STREAM_SELECT, default)
if value in self._STREAM_SELECT:
return self._STREAM_SELECT[value]
self._STREAM_SELECT[default]
return self._STREAM_SELECT[default]

def hide_short_videos(self):
return self.get_bool(settings.HIDE_SHORT_VIDEOS, False)
Expand Down

0 comments on commit 32ee4b5

Please sign in to comment.