From 9ce485eadedd49b41527240757ffc37042635190 Mon Sep 17 00:00:00 2001 From: Blaz Kristan Date: Sat, 3 Feb 2024 14:40:45 +0100 Subject: [PATCH] Ignore missing remote.json --- wled00/remote.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wled00/remote.cpp b/wled00/remote.cpp index c41d88421..022b7f452 100644 --- a/wled00/remote.cpp +++ b/wled00/remote.cpp @@ -127,7 +127,7 @@ static bool remoteJson(int button) JsonObject fdo = pDoc->as(); if (fdo.isNull()) { // the received button does not exist - if (!WLED_FS.exists("/remote.json")) errorFlag = ERR_FS_RMLOAD; //warn if file itself doesn't exist + //if (!WLED_FS.exists("/remote.json")) errorFlag = ERR_FS_RMLOAD; //warn if file itself doesn't exist releaseJSONBufferLock(); return parsed; }