Merge pull request #3651 from lbryio/fix-autoplay

fix bug in autoplay
This commit is contained in:
jessopb 2020-02-07 01:26:23 -05:00 committed by GitHub
commit ac61c58256
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 2 deletions

View file

@ -925,5 +925,8 @@
"%repost_channel_link% reposted": "%repost_channel_link% reposted", "%repost_channel_link% reposted": "%repost_channel_link% reposted",
"Abandon on blockchain (reclaim %amount% LBC)": "Abandon on blockchain (reclaim %amount% LBC)", "Abandon on blockchain (reclaim %amount% LBC)": "Abandon on blockchain (reclaim %amount% LBC)",
"This channel may have been unpublished.": "This channel may have been unpublished.", "This channel may have been unpublished.": "This channel may have been unpublished.",
"There was an error. Try %refreshing_the_app_link% to fix it. If that doesn't work, try pressing Ctrl+R/Cmd+R.": "There was an error. Try %refreshing_the_app_link% to fix it. If that doesn't work, try pressing Ctrl+R/Cmd+R." "There was an error. Try %refreshing_the_app_link% to fix it. If that doesn't work, try pressing Ctrl+R/Cmd+R.": "There was an error. Try %refreshing_the_app_link% to fix it. If that doesn't work, try pressing Ctrl+R/Cmd+R.",
"Custom": "Custom",
"Playing in %seconds_left% seconds": "Playing in %seconds_left% seconds",
"Up Next by %channel%": "Up Next by %channel%"
} }

View file

@ -115,7 +115,7 @@ export const makeSelectNextUnplayedRecommended = (uri: string) =>
const isVideo = claim.value && claim.value.stream_type === 'video'; const isVideo = claim.value && claim.value.stream_type === 'video';
// $FlowFixMe // $FlowFixMe
const isAudio = claim.value && claim.value.stream_type === 'audio'; const isAudio = claim.value && claim.value.stream_type === 'audio';
if (!isVideo || !isAudio) { if (!isVideo && !isAudio) {
continue; continue;
} }