Fix recursion bug in networkEvery5Seconds #381

This commit is contained in:
fvanroie 2022-11-23 20:42:19 +01:00
parent 6dfe25a176
commit a92860b4cd

View File

@ -142,7 +142,7 @@ bool networkEvery5Seconds(void)
{
if(current_network_state != last_network_state) network_run_scripts();
#if HASP_USE_ETHERNET > 0
networkEvery5Seconds();
ethernetEvery5Seconds();
#endif
#if HASP_USE_WIFI > 0
wifiEvery5Seconds();