Only show update warning if "/vol/storage_mlc01/sys/update" exists and is actually a directory

This commit is contained in:
Maschell 2023-01-05 18:58:45 +01:00
parent efe611712f
commit af68c340cf
1 changed files with 3 additions and 2 deletions

View File

@ -49,8 +49,9 @@ int32_t main(int32_t argc, char **argv) {
if (client > 0) {
if (Mocha_UnlockFSClientEx(client) == MOCHA_RESULT_SUCCESS) {
// test if the update folder exists
FSStat stat;
if (FSAGetStat(client, "/vol/storage_mlc01/sys/update", &stat) >= 0) {
FSADirectoryHandle dirHandle;
if (FSAOpenDir(client, "/vol/storage_mlc01/sys/update", &dirHandle) >= 0) {
FSACloseDir(client, dirHandle);
handleUpdateWarningScreen();
}
}