Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bugfix: Don't sync to live when media is in paused #4402

Open
wants to merge 11 commits into
base: master
Choose a base branch
from
2 changes: 1 addition & 1 deletion src/controller/base-stream-controller.ts
Expand Up @@ -1061,7 +1061,7 @@ export default class BaseStreamController

protected synchronizeToLiveEdge(levelDetails: LevelDetails) {
const { config, media } = this;
if (!media) {
if (!media || media.paused) {
return;
}
const liveSyncPosition = this.hls.liveSyncPosition;
Expand Down