Don't show error screen on null'd status

This commit is contained in:
suchmememanyskill
2024-03-22 21:15:00 +01:00
parent 400e2ae266
commit 0f472ae78b

View File

@@ -223,7 +223,7 @@ void fetch_printer_data()
if (state == nullptr) if (state == nullptr)
{ {
printer_state = PRINTER_STATE_ERROR; // Continue
} }
else if (strcmp(state, "printing") == 0) else if (strcmp(state, "printing") == 0)
{ {