RPC: Fix apps not updating and staying at 100% --nobuild

This commit is contained in:
Willy-JL
2024-10-29 22:52:58 +00:00
parent 4ee5789168
commit 45f6e448c6
2 changed files with 2 additions and 1 deletions

View File

@@ -177,6 +177,7 @@
- Fallback SD format prompt when storage settings is unavailable (by @Willy-JL)
- OFW: Fix folder rename fails (by @portasynthinca3)
- About: Fix BLE stack version string (by @Willy-JL)
- RPC: Fixed apps not updating and staying at 100% (by @Willy-JL)
- OFW: Loader: Warn about missing SD card for main apps (by @Willy-JL)
- NFC:
- UL: Read Ultralight block by block (by @mishamyte)

View File

@@ -629,7 +629,7 @@ static void rpc_system_storage_rename_process(const PB_Main* request, void* cont
rpc_system_storage_reset_state(rpc_storage, session, true);
if(path_contains_only_ascii(request->content.storage_rename_request.new_path)) {
FS_Error error = storage_common_rename_safe(
FS_Error error = storage_common_rename(
rpc_storage->api,
request->content.storage_rename_request.old_path,
request->content.storage_rename_request.new_path);