Skip to content

Commit

Permalink
fix(h5): InnerAudioContext和BackgroundAudioManager出现错误时未触发onError
Browse files Browse the repository at this point in the history
  • Loading branch information
tangbzai authored and ZakaryCode committed Jul 10, 2023
1 parent 5543db8 commit 8699145
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions packages/taro-h5/src/api/media/audio/InnerAudioContext.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ export class InnerAudioContext implements Taro.InnerAudioContext {
this.Instance = new Audio()
this.errorStack = new CallbackManager()
this.stopStack = new CallbackManager()
this.Instance.onerror = this.errorStack.trigger

Taro.eventCenter.on('__taroRouterChange', () => { this.stop() })
this.onPlay(() => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ export class BackgroundAudioManager implements Taro.BackgroundAudioManager {
this.Instance = new Audio()
this.errorStack = new CallbackManager()
this.stopStack = new CallbackManager()
this.Instance.onerror = this.errorStack.trigger
this.Instance.autoplay = true
this.onPlay(() => {
if (this.currentTime !== this.startTime) {
Expand Down

0 comments on commit 8699145

Please sign in to comment.