Skip to content

Commit

Permalink
Release 2.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jghaanstra committed Feb 17, 2018
1 parent e565509 commit 48b67a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/mi-robot/device.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ class MiRobotDevice extends Homey.Device {
if (this.miio.property('state') == 'charging') {
var onoff = false;
var state = 'charging';
} else if (this.miio.property('state') == 'docked' || this.miio.property('state') == 'full' || this.miio.property('state') == 'returning') {
} else if (this.miio.property('state') == 'docking' || this.miio.property('state') == 'full' || this.miio.property('state') == 'returning') {
var onoff = false;
var state = 'docked';
} else if (this.miio.property('state') == 'cleaning' || this.miio.property('state') == 'zone-cleaning') {
Expand Down

0 comments on commit 48b67a9

Please sign in to comment.