Firewall filter inactive time error

Can someone please tell me whey this comes back and says inactive time? I actually want it to work from 22:30 - 07:00

1 I ;;; Drop Times
;;; inactive time
chain=forward action=drop src-address-list=jes time=22h-23h59m,sun,mon,tue,wed,thu,fri,sat log=no log-prefix=“”

Because that’s how it is implemented - instead of matching each packet against the rule and thus wasting resources as it would never match anyway, the rule is made inactive outside its validity time, so it is not matched at all.
You cannot have a single rule crossing midnight, so you need two rules:

chain=forward action=drop src-address-list=jes time=22h30m-1d,sun,mon,tue,wed,thu,fri,sat
chain=forward action=drop src-address-list=jes time=0s-7h,sun,mon,tue,wed,thu,fri,sat

Thank you for the help!