Skip to content

Commit

Permalink
Merge pull request hollie#462 from krkeegan/insteon_set_receive_fix
Browse files Browse the repository at this point in the history
Insteon: Fix Error In Set Receive Affecting Presence Monitor Items
  • Loading branch information
krkeegan committed Aug 14, 2014
2 parents 80c91a3 + ad00ae0 commit 49add01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Insteon/BaseInsteon.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3489,7 +3489,7 @@ sub set_linked_devices
$$self{members}{$member_ref}{resume_state} = $light->state;
$member->manual($light, $ramp_rate);
if (lc $link_state ne 'on'){
$local_state = $light->$link_state;
$local_state = $light->derive_link_state($link_state);
}
$light->set_receive($local_state,$self);
}
Expand Down

0 comments on commit 49add01

Please sign in to comment.