remove check

This commit is contained in:
Josh Hawkins 2025-10-24 07:25:33 -05:00
parent 82631625f0
commit bba42e8050

View File

@ -63,11 +63,7 @@ export class DynamicVideoController {
}
isPlaying(): boolean {
return (
!this.playerController.paused &&
!this.playerController.ended &&
this.playerController.readyState >= HTMLMediaElement.HAVE_ENOUGH_DATA
);
return !this.playerController.paused && !this.playerController.ended;
}
seekToTimestamp(time: number, play: boolean = false) {