Skip to content

Commit

Permalink
[ESP32] Fix commissioning of esp32 (#15856)
Browse files Browse the repository at this point in the history
  • Loading branch information
jadhavrohit924 authored and pull[bot] committed Jun 23, 2023
1 parent 8f07e89 commit 3305479
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/platform/ESP32/ESP32Utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ CHIP_ERROR ESP32Utils::MapError(esp_err_t error)
}
if (error == ESP_ERR_NVS_NOT_FOUND)
{
return CHIP_ERROR_KEY_NOT_FOUND;
return CHIP_ERROR_PERSISTED_STORAGE_VALUE_NOT_FOUND;
}
return CHIP_ERROR(ChipError::Range::kPlatform, error);
}
Expand Down

0 comments on commit 3305479

Please sign in to comment.