Skip to content

Commit

Permalink
Fix wrong live stream playlist used for subscriptions (#5876)
Browse files Browse the repository at this point in the history
  • Loading branch information
ChunkyProgrammer authored Oct 16, 2024
1 parent e7e2cb2 commit df9fafd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/renderer/helpers/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -875,9 +875,9 @@ export function getChannelPlaylistId(channelId, type, sortBy) {
}
case 'live':
if (sortBy === 'popular') {
return channelId.replace(/^UC/, 'UULV')
} else {
return channelId.replace(/^UC/, 'UUPV')
} else {
return channelId.replace(/^UC/, 'UULV')
}
case 'shorts':
if (sortBy === 'popular') {
Expand Down

0 comments on commit df9fafd

Please sign in to comment.