Changed smallest timeout to 0 to avoid a timeout.
git-svn-id: https://svn.fhem.de/fhem/trunk@4673 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
@@ -1290,8 +1290,8 @@ sub ENIGMA2_Set($@) {
|
|||||||
return
|
return
|
||||||
"Argument "
|
"Argument "
|
||||||
. $_
|
. $_
|
||||||
. " is not a valid integer between 5 and 49680"
|
. " is not a valid integer between 0 and 49680"
|
||||||
if ( !m/^\d+$/ || $_ < 5 || $_ > 49680 );
|
if ( !m/^\d+$/ || $_ < 0 || $_ > 49680 );
|
||||||
|
|
||||||
my $i = 4;
|
my $i = 4;
|
||||||
my $text = $a[$i];
|
my $text = $a[$i];
|
||||||
|
|||||||
Reference in New Issue
Block a user