Skip to content

Commit 5238f50

Browse files
authored
Fix an issue with StorageUploadTask.resume accidentally using Download. (#9717)
1 parent 2e53f23 commit 5238f50

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
* Resumes a paused task.
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)