Skip to content

Commit

Permalink
qpl fix
Browse files Browse the repository at this point in the history
  • Loading branch information
josephdadams committed Jan 21, 2024
1 parent 487693a commit 3210eb8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "roland-v60hd",
"version": "2.0.2",
"version": "2.0.3",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
Expand Down
2 changes: 1 addition & 1 deletion src/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ module.exports = {
let self = this;

if (self.pollMixerTimer === undefined && self.config.poll_interval > 0) {
self.pollMixerTimer = setInterval(sendQPL.bind(self), self.config.poll_interval)
self.pollMixerTimer = setInterval(self.sendQPL.bind(self), self.config.poll_interval)
}
},

Expand Down

0 comments on commit 3210eb8

Please sign in to comment.