From 7b7becdf476712ab976529ad9be95f6403d1980c Mon Sep 17 00:00:00 2001 From: KRKeegan Date: Thu, 17 Oct 2013 22:25:55 -0700 Subject: [PATCH] Insteon: Fix Bug in Call to Is_Deaf in Sync_Links --- lib/Insteon.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Insteon.pm b/lib/Insteon.pm index ce028a87e..84fabc82b 100755 --- a/lib/Insteon.pm +++ b/lib/Insteon.pm @@ -510,7 +510,7 @@ sub sync_all_links # iterate over all registered objects and compare whether the link tables match defined scene linkages in known Insteon_Links for my $obj (&Insteon::find_members('Insteon::BaseController')) { - if ($obj->is_deaf) + if (!$obj->isa('Insteon::InterfaceController') && $obj->is_deaf) { &main::print_log("[Sync all links] Ignoring links from 'deaf' device: " . $obj->get_object_name); }