Skip to content

Commit ac64512

Browse files
author
Ruben Nine
committed
Adding progress to MultipartUpload and MultifileUpload description.
Fixing typo.
1 parent e76dc67 commit ac64512

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

FilestackSDK/Public/Enums/UploadStatus.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ extension UploadStatus: CustomStringConvertible {
3535
case .notStarted:
3636
return "notStarted"
3737
case .inProgress:
38-
return "public"
38+
return "inProgress"
3939
case .completed:
4040
return "completed"
4141
case .cancelled:

FilestackSDK/Public/Models/MultifileUpload.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,6 @@ private extension MultifileUpload {
208208
extension MultifileUpload {
209209
/// :nodoc:
210210
public override var description: String {
211-
return Tools.describe(subject: self, only: ["currentStatus"])
211+
return Tools.describe(subject: self, only: ["currentStatus", "progress"])
212212
}
213213
}

FilestackSDK/Public/Models/MultipartUpload.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -404,6 +404,6 @@ private extension MultipartUpload {
404404
extension MultipartUpload {
405405
/// :nodoc:
406406
public override var description: String {
407-
return Tools.describe(subject: self, only: ["currentStatus"])
407+
return Tools.describe(subject: self, only: ["currentStatus", "progress"])
408408
}
409409
}

0 commit comments

Comments
 (0)