We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bug Description:
There is a potential writing error in sound/src/htmlaudio/HTMLAudioInstance.ts on line 341.
sound/src/htmlaudio/HTMLAudioInstance.ts
The code snippet this.emit('progress', start, this._duration); should have 'start' modified to 'start/this._duration'.
this.emit('progress', start, this._duration);
'start'
'start/this._duration'
Steps to Reproduce:
Navigate to the sound/src/htmlaudio/HTMLAudioInstance.ts file. Go to line 341. Note the mentioned code snippet. Expected Behavior:
Modify the code to change this.emit('progress', start, this._duration); with start/this._duration to ensure correct behavior.
Thank you for bringing this to attention, looking forward to the resolution of the issue!
The text was updated successfully, but these errors were encountered:
Same here.
Sorry, something went wrong.
Released in v6.0.1
Successfully merging a pull request may close this issue.
Bug Description:
There is a potential writing error in
sound/src/htmlaudio/HTMLAudioInstance.ts
on line 341.The code snippet
this.emit('progress', start, this._duration);
should have'start'
modified to'start/this._duration'
.Steps to Reproduce:
Navigate to the sound/src/htmlaudio/HTMLAudioInstance.ts file.
Go to line 341.
Note the mentioned code snippet.
Expected Behavior:
Modify the code to change this.emit('progress', start, this._duration); with start/this._duration to ensure correct behavior.
Thank you for bringing this to attention, looking forward to the resolution of the issue!
The text was updated successfully, but these errors were encountered: