fix standalone

This commit is contained in:
proddy
2020-07-28 17:20:10 +02:00
parent 4175fe56fd
commit 56398ccb85

View File

@@ -251,7 +251,7 @@ void System::start() {
bool System::upload_status() { bool System::upload_status() {
#if defined(EMSESP_STANDALONE) #if defined(EMSESP_STANDALONE)
return false; return false;
#elif #else
return upload_status_ || Update.isRunning(); return upload_status_ || Update.isRunning();
#endif #endif
} }