Skip to content

Commit

Permalink
fix command properties
Browse files Browse the repository at this point in the history
  • Loading branch information
colinbendell committed Feb 20, 2021
1 parent 06cd012 commit 29a19bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/blink.js
Original file line number Diff line number Diff line change
Expand Up @@ -199,11 +199,11 @@ class BlinkNetwork extends BlinkDevice {
}

set commandID(val) {
this.commandID = val;
this._commandID = val;
}

get commandID() {
return this.commandID;
return this._commandID;
}

async getCommandBusy() {
Expand Down

0 comments on commit 29a19bd

Please sign in to comment.