autoplay audio too
This commit is contained in:
parent
21fe8acb2b
commit
9defd7cd22
1 changed files with 3 additions and 1 deletions
|
@ -113,7 +113,9 @@ export const makeSelectNextUnplayedRecommended = (uri: string) =>
|
|||
// We already check if it's a channel above
|
||||
// $FlowFixMe
|
||||
const isVideo = claim.value && claim.value.stream_type === 'video';
|
||||
if (!isVideo) {
|
||||
// $FlowFixMe
|
||||
const isAudio = claim.value && claim.value.stream_type === 'audio';
|
||||
if (!isVideo || !isAudio) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue