fix(android): fix android blob upload (#13435)

<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->

## Summary by CodeRabbit

* **Bug Fixes**
* Improved WebView configuration to allow loading mixed content (HTTP
and HTTPS) in the Android app.
* Enhanced robustness when retrieving upload timestamps, preventing
potential errors if data is missing or undefined.

<!-- end of auto-generated comment: release notes by coderabbit.ai -->
This commit is contained in:
EYHN
2025-08-07 11:43:30 +08:00
committed by GitHub
parent bc3b41378d
commit 747b11b128
3 changed files with 5 additions and 3 deletions
@@ -321,7 +321,7 @@ export const NbStoreNativeDBApis: NativeDBApis = {
peer,
blobId,
});
return result.uploadedAt ? new Date(result.uploadedAt) : null;
return result?.uploadedAt ? new Date(result.uploadedAt) : null;
},
setBlobUploadedAt: async function (
id: string,