91sequence.pm: fix bug (Forum #121953)

git-svn-id: https://svn.fhem.de/fhem/trunk@27765 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig
2023-07-14 15:28:29 +00:00
parent dd1c08c7fa
commit e438b68277

View File

@@ -86,7 +86,7 @@ sequence_Notify($$)
my $s = $events->[$i];
$s = "" if(!defined($s));
if($n !~ m/^$re$/ && "$n:$s" !~ m/^$re$/) {
next if(!$strictSequence && $hash->{IDX});
next if(!$strictSequence || !$hash->{IDX});
RemoveInternalTimer($ln);
sequence_Trigger($ln, "abort-strict");
return "";