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:
mrp666
2014-01-17 10:57:12 +00:00
parent 5650c870cd
commit 48bbc041bb

View File

@@ -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];