Skip to content

Commit

Permalink
fix(esl-media): seekTo leads to no proper behavior when YouTube video…
Browse files Browse the repository at this point in the history
… is not ready
  • Loading branch information
dshovchko committed May 20, 2024
1 parent 493419b commit f5a0762
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/esl-media/providers/youtube-provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ export class YouTubeProvider extends BaseProvider {
}

public seekTo(pos: number): void {
this._api.seekTo(pos, false);
this._api.seekTo(pos, true);
}

public play(): void {
Expand Down

0 comments on commit f5a0762

Please sign in to comment.