From 56398ccb8511b5a766161a2d004591419c97a794 Mon Sep 17 00:00:00 2001 From: proddy Date: Tue, 28 Jul 2020 17:20:10 +0200 Subject: [PATCH] fix standalone --- src/system.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/system.cpp b/src/system.cpp index 9c0b1a392..9bac30722 100644 --- a/src/system.cpp +++ b/src/system.cpp @@ -251,7 +251,7 @@ void System::start() { bool System::upload_status() { #if defined(EMSESP_STANDALONE) return false; -#elif +#else return upload_status_ || Update.isRunning(); #endif }