fix Warnings -Use of uninitialized value in string-

This commit is contained in:
Marko Oldenburg 2018-07-10 10:52:17 +02:00
parent ce05f6f2c9
commit 617ee64228
2 changed files with 3 additions and 5 deletions

View File

@ -46,8 +46,8 @@ use JSON;
use HttpUtils;
my $version = "0.6.2";
my $bridgeapi = "1.5";
my $version = "0.6.3";
my $bridgeapi = "1.6";

View File

@ -33,7 +33,7 @@ use warnings;
use JSON;
my $version = "0.6.2";
my $version = "0.6.3";
@ -213,8 +213,6 @@ sub NUKIDevice_Attr(@) {
return "Invalid value for attribute $attrName: can only by FQDN or IPv4 or IPv6 address" if ( $attrVal && $attrName eq "webhookHttpHostname" && $attrVal !~ /^([A-Za-z_.0-9]+\.[A-Za-z_.0-9]+)|[0-9:]+$/ );
return "Invalid value for attribute $attrName: needs to be different from the defined name/address of your Smartlock, we need to know how Smartlock can connect back to FHEM here!" if ( $attrVal && $attrName eq "webhookHttpHostname" && $attrVal eq $hash->{DeviceName} );
return "Invalid value for attribute $attrName: FHEMWEB instance $attrVal not existing" if ( $attrVal && $attrName eq "webhookFWinstance" && ( !defined( $defs{$attrVal} ) || $defs{$attrVal}{TYPE} ne "FHEMWEB" ) );
return "Invalid value for attribute $attrName: needs to be an integer value" if ( $attrVal && $attrName eq "webhookPort" && $attrVal !~ /^\d+$/ );