Hi,
I modified line 181 of cc_class.php to make it work
from
return array_merge($mailLists, $this->getLists($call2));
to
$get_lists = $this->getLists($call2);
if( is_array( $get_lists ) )
return array_merge($mailLists, $get_lists);
else
return $mailLists;