Here are a couple small fixes I've implemented in a personal project. You can merge in at your convenience if you like them. (I have only been working in helios-audio-mixer.js).
Fixes are:
Added a semi-colon at the end of the file to avoid errors when concatenating. (Semi-colons should be added throughout the file at some point).
Line 1271, added an extra condition to make sure this.nodes exists before checking for this.nodes.gain. I was getting multiple errors because the computer couldn't get gain of undefined.
Hey Iain,
Here are a couple small fixes I've implemented in a personal project. You can merge in at your convenience if you like them. (I have only been working in
helios-audio-mixer.js
).Fixes are:
1271
, added an extra condition to make surethis.nodes
exists before checking forthis.nodes.gain
. I was getting multiple errors because the computer couldn't get gain of undefined.