Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F32149289
D14962.1765033156.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
D14962.1765033156.diff
View Options
diff --git a/native/input/input-state-container.react.js b/native/input/input-state-container.react.js
--- a/native/input/input-state-container.react.js
+++ b/native/input/input-state-container.react.js
@@ -1201,8 +1201,8 @@
uploadOptions,
uploadProgress => {
if (options && options.onProgress) {
- const { totalByteSent, totalBytesExpectedToSend } = uploadProgress;
- options.onProgress(totalByteSent / totalBytesExpectedToSend);
+ const { totalBytesSent, totalBytesExpectedToSend } = uploadProgress;
+ options.onProgress(totalBytesSent / totalBytesExpectedToSend);
}
},
);
diff --git a/native/utils/blob-service-upload.js b/native/utils/blob-service-upload.js
--- a/native/utils/blob-service-upload.js
+++ b/native/utils/blob-service-upload.js
@@ -51,8 +51,8 @@
uploadOptions,
uploadProgress => {
if (options?.onProgress) {
- const { totalByteSent, totalBytesExpectedToSend } = uploadProgress;
- options.onProgress(totalByteSent / totalBytesExpectedToSend);
+ const { totalBytesSent, totalBytesExpectedToSend } = uploadProgress;
+ options.onProgress(totalBytesSent / totalBytesExpectedToSend);
}
},
);
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Dec 6, 2:59 PM (17 h, 57 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
5838860
Default Alt Text
D14962.1765033156.diff (1 KB)
Attached To
Mode
D14962: [native][RN79][skip-ci] Rename totalByteSent -> totalBytesSent from expo-file-system
Attached
Detach File
Event Timeline
Log In to Comment