You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
this.lastPortCount = this.portCount in your midi-adapter.js on line 32 assigns a function to an integer variable. It's overwritten in the only case it's being used after that I think, so you could probably remove it, or change it to calling the function instead of assigning it.
The text was updated successfully, but these errors were encountered:
Thanks you for pointing that out. That's a mistake I've made. I'll fix it.
The MIDI relay part is not too important after all because (as I learnt after publishing the video) there is a MIDI API available in Chrome. Version 2 of this project is going to make use of it.
this.lastPortCount = this.portCount
in your midi-adapter.js on line 32 assigns a function to an integer variable. It's overwritten in the only case it's being used after that I think, so you could probably remove it, or change it to calling the function instead of assigning it.The text was updated successfully, but these errors were encountered: