Skip to content

Commit e3279d3

Browse files
Fix an issue with StorageUploadTask.resume accidentally using Download. (#9717) (#9718)
Co-authored-by: Jon Simantov <[email protected]>
1 parent f075fdc commit e3279d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

FirebaseStorage/Sources/StorageUploadTask.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ import FirebaseStorageInternal
5353
* Pauses a task currently in progress.
5454
*/
5555
@objc open func resume() {
56-
(impl as! FIRIMPLStorageDownloadTask).resume()
56+
(impl as! FIRIMPLStorageUploadTask).resume()
5757
}
5858

5959
internal init(_ impl: FIRIMPLStorageUploadTask) {

0 commit comments

Comments
 (0)