gmpassos / howler.dart

Dart audio library for the modern web. Dart port of Howler.js (https://github.com/goldfire/howler.js)
MIT License
31 stars 6 forks source link

Fix null reference bug. #5

Closed ferni closed 4 years ago

ferni commented 4 years ago

To reproduce, play the same sound several times at the same moment, then wait a bit and attempt to play it once more:

howl.play();
howl.play();
howl.play();
howl.play();
howl.play();

await wait('5 seconds');

howl.play();
gmpassos commented 4 years ago

I have pulled all the changes in Howler.js to Howler.dart (manually, since needs translation to Dart).

If you can test the last version (v1.1.0) I will be glad.

Best regards.