-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
Fixed error calling undefined method 'level' on RemoteLinc object in BaseInsteon.pm.
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -137,9 +137,11 @@ sub send | |
} | ||
} | ||
elsif (defined($$self{no_hop_increase}) && $main::Debug{insteon}){ | ||
&main::print_log("[Insteon::BaseMessage] Hop count not increased for " | ||
. $self->setby->get_object_name . " because no_hop_increase flag was set."); | ||
$$self{no_hop_increase} = undef; | ||
if(defined($self->setby)) { | ||
&main::print_log("[Insteon::BaseMessage] Hop count not increased for " | ||
. $self->setby->get_object_name . " because no_hop_increase flag was set."); | ||
$$self{no_hop_increase} = undef; | ||
} | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
mstovenour
|
||
} | ||
} | ||
|
||
|
The issue was fixed in the hollie/master branch by hollie#143