commit
ac61c58256
2 changed files with 5 additions and 2 deletions
|
@ -925,5 +925,8 @@
|
|||
"%repost_channel_link% reposted": "%repost_channel_link% reposted",
|
||||
"Abandon on blockchain (reclaim %amount% LBC)": "Abandon on blockchain (reclaim %amount% LBC)",
|
||||
"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%"
|
||||
}
|
||||
|
|
|
@ -115,7 +115,7 @@ export const makeSelectNextUnplayedRecommended = (uri: string) =>
|
|||
const isVideo = claim.value && claim.value.stream_type === 'video';
|
||||
// $FlowFixMe
|
||||
const isAudio = claim.value && claim.value.stream_type === 'audio';
|
||||
if (!isVideo || !isAudio) {
|
||||
if (!isVideo && !isAudio) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue