diff --git a/Changelog.md b/Changelog.md index bff5c057..380079a1 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,8 +1,8 @@ -## [15.2.3] - 2023-05-01 +## [15.2.4] - 2023-05-02 ### Changes -For a full list of changes see [Full list of changes](https://github.com/jomjol/AI-on-the-edge-device/compare/v15.2.1...v15.2.2) +For a full list of changes see [Full list of changes](https://github.com/jomjol/AI-on-the-edge-device/compare/v15.2.1...v15.2.4) #### Changed - Updated PlatformIO to `6.2.0` @@ -985,7 +985,7 @@ External Illumination - Initial Version -[15.2.3]: https://github.com/jomjol/AI-on-the-edge-device/compare/v15.2.1...v15.2.3 +[15.2.4]: https://github.com/jomjol/AI-on-the-edge-device/compare/v15.2.1...v15.2.4 [15.2.1]: https://github.com/jomjol/AI-on-the-edge-device/compare/v15.2.0...v15.2.1 [15.2.0]: https://github.com/jomjol/AI-on-the-edge-device/compare/v15.1.1...v15.2.0 [15.1.1]: https://github.com/jomjol/AI-on-the-edge-device/compare/v15.1.0...v15.1.1 diff --git a/code/components/jomjol_helper/sdcard_check.cpp b/code/components/jomjol_helper/sdcard_check.cpp index 2b658f7d..e8ac9d24 100644 --- a/code/components/jomjol_helper/sdcard_check.cpp +++ b/code/components/jomjol_helper/sdcard_check.cpp @@ -147,12 +147,6 @@ bool SDCardCheckFolderFilePresence() bRetval = false; } - /* check if file exists: gethost.js */ - if (stat("/sdcard/html/gethost.js", &sb) != 0) { - LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "Folder/file check: File /html/gethost.js not found"); - bRetval = false; - } - /* check if file exists: version.txt */ if (stat("/sdcard/html/version.txt", &sb) != 0) { LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "Folder/file check: File /html/version.txt not found"); @@ -163,4 +157,4 @@ bool SDCardCheckFolderFilePresence() LogFile.WriteToFile(ESP_LOG_INFO, TAG, "Folder/file presence check successful"); return bRetval; -} \ No newline at end of file +}