Skip to content

Commit

Permalink
fix(): added more logs
Browse files Browse the repository at this point in the history
  • Loading branch information
timaramazanov committed Jun 3, 2024
1 parent b9213b4 commit 14c6da5
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ export class VideoContainer extends LitElement {

@listen(Types.Command.seek, { canPlay: true })
seek({ time }: { time: number }) {
console.log('GOING TO SEEK!!!')
const [video] = this.videos;
video.currentTime = time;
if (video.paused && !this.castActivated) this.play();
Expand Down

0 comments on commit 14c6da5

Please sign in to comment.