From b283e526bf0bf56be6c137823a335444409c53eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20G=C3=B6ttgens?= Date: Sat, 7 Jan 2023 13:25:29 +0100 Subject: [PATCH] fix for nRF52 and Portduino --- src/FSCommon.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FSCommon.cpp b/src/FSCommon.cpp index 1bf355056..2541aa8b5 100644 --- a/src/FSCommon.cpp +++ b/src/FSCommon.cpp @@ -171,7 +171,7 @@ void fsInit() if (!FSBegin()) { LOG_ERROR("Filesystem mount Failed.\n"); - assert(0); // FIXME - report failure to phone + // assert(0); This auto-formats the partition, so no need to fail here. } #ifdef ARCH_ESP32 LOG_DEBUG("Filesystem files (%d/%d Bytes):\n", FSCom.usedBytes(), FSCom.totalBytes());