Skip to content

Commit

Permalink
Fix HTMLAudioPlayer
Browse files Browse the repository at this point in the history
  • Loading branch information
ShinobuTakahashi committed Apr 26, 2024
1 parent 5b7a6d8 commit 4f7a817
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugin/HTMLAudioPlugin/HTMLAudioPlayer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export class HTMLAudioPlayer extends AudioPlayer {
// 同じ audio を 連続で再生するとエラーとなる。これは audio.play() が非同期で開始されるためである。
// 現在再生中とこれから再生しようとする audio が同じ場合は現在の audio を先頭から再生し、これから再生しようとする audio は何もしないようにする。
super.stop();
this._audioInstance!.currentTime = 0;
this._audioInstance!.currentTime = (asset.offset ?? 0) / 1000;
super.play(asset);
return;
}
Expand Down

0 comments on commit 4f7a817

Please sign in to comment.