Skip to content

Commit

Permalink
Fix live streams endlessly buffering (FreeTubeApp#6019)
Browse files Browse the repository at this point in the history
  • Loading branch information
absidue authored and Soham456 committed Dec 5, 2024
1 parent e9e3e29 commit d05bb9f
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -556,7 +556,6 @@ export default defineComponent({
dash: {
manifestPreprocessorTXml: manifestPreprocessorTXml
},
availabilityWindowOverride: seekingIsPossible.value ? NaN : 0
},
abr: {
enabled: useAutoQuality,
Expand Down Expand Up @@ -1803,7 +1802,7 @@ export default defineComponent({
const seekRange = player.seekRange()

// Seeking not possible e.g. with HLS
if (seekRange.start === seekRange.end) {
if (seekRange.start === seekRange.end || !seekingIsPossible.value) {
return false
}

Expand Down

0 comments on commit d05bb9f

Please sign in to comment.