No worries.
The reason I suggested it was because you want a msg to pass IF time was sunset
to 02:00.
The cron-plus node can be queried for sunset time / solar status - so you only needed to check (in a function or switch+JSONata) that the time was BEFORE 02:00
e.g....
[{"id":"426a978b.442178","type":"cronplus","z":"462180de.0f254","name":"","outputField":"payload","timeZone":"","persistDynamic":false,"commandResponseMsgOutput":"output1","outputs":1,"options":[],"x":260,"y":480,"wires":[["fc656b97.6cd0e8","ee078b8e.73d938"]]},{"id":"83aea31b.5cd13","type":"inject","z":"462180de.0f254","name":"","props":[{"p":"payload"},{"p":"topic","vt":"str"}],"repeat":"60","crontab":"","once":false,"onceDelay":0.1,"topic":"","payload":"{\"command\":\"describe\",\"expressionType\":\"solar\",\"location\":\"54.9992500,-1.4170300\",\"solarType\":\"selected\",\"solarEvents\":\"sunset\",\"timeZone\":\"Europe/London\"}","payloadType":"json","x":130,"y":480,"wires":[["426a978b.442178"]]},{"id":"292746f0.fbd64a","type":"debug","z":"462180de.0f254","name":"is sunset ~ 2am","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"true","targetType":"full","statusVal":"","statusType":"auto","x":720,"y":540,"wires":[]},{"id":"fc656b97.6cd0e8","type":"switch","z":"462180de.0f254","name":"Is Sunset","property":"(payload.result.solarState.twilight = true)\tor\t(payload.result.solarState.night = true)\t\t \t\t\t\t","propertyType":"jsonata","rules":[{"t":"true"}],"checkall":"false","repair":false,"outputs":1,"x":420,"y":480,"wires":[["cb34562e.c5a4d8","5fd56c59.289da4"]]},{"id":"cb34562e.c5a4d8","type":"function","z":"462180de.0f254","name":"Is time < 2am?","func":"var hrs = new Date().getHours();\n\n//since it is unlikely to be dusk at 2pm, a simple check\n//for HOURS being >= 14 OR < 2am is enough\nif(hrs >= 14 || hrs < 2)\n return msg;","outputs":1,"noerr":0,"initialize":"","finalize":"","x":600,"y":480,"wires":[["292746f0.fbd64a"]]},{"id":"ee078b8e.73d938","type":"debug","z":"462180de.0f254","name":"cron","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"true","targetType":"full","statusVal":"","statusType":"auto","x":290,"y":540,"wires":[]},{"id":"5fd56c59.289da4","type":"debug","z":"462180de.0f254","name":"is sunset?","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"true","targetType":"full","statusVal":"","statusType":"auto","x":480,"y":540,"wires":[]}]