Page MenuHomePhorge

D14962.1765033156.diff
No OneTemporary

Size
1 KB
Referenced Files
None
Subscribers
None

D14962.1765033156.diff

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

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)

Event Timeline