Logging time based rules

Hi,
i have set the following rules and actually everything works as far as desired. This means that the PCs are blocked according to the MAC address filter at the specified times.
However, rule no. 100 is generally hit or appears in the firewall log. This means that even at permitted times, number 100 always appears in the log first, followed by rule 200.

Why ? Is this a bug ?

(I’m using Version VyOS 1.4-rolling-202206070913)

Rule-Set :

default-action drop
enable-default-log

rule 100 {
action drop
description “sleep time - son”
log enable
source {
group {
mac-group MAC-pc-son
}
}
time {
starttime 00:01:00
stoptime 09:00:00
weekdays 0,1,2,3,4
}
}
rule 200 {
action accept
description “allow all”
log enable
}

Do the 100 and 200 hits come from the same MAC address?

yes, all (new) traffic will log both rules between 09:00 - 00:00 (with the same mac-address). But the block works correct between 00:01 - 08:59.