Skip to content

Commit 9d49909

Browse files
committed
Update to follow esp core latest changes
1 parent 045c2ec commit 9d49909

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

esp3d/webinterface.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -869,7 +869,9 @@ void handle_web_interface_home()
869869
//increment counter
870870
client_counter++;
871871
//go next record
872-
station = STAILQ_NEXT(station, next);
872+
//removed due to queue.h removed
873+
//station = STAILQ_NEXT(station, next);
874+
station = station->next;
873875
}
874876
wifi_softap_free_station_info();
875877
//Connected clients

0 commit comments

Comments
 (0)