Browse Source

Fixed compilation issue in iOS Example with DownloadRequest destination closure.

Christian Noon 9 years ago
parent
commit
97658eb49b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Example/Source/MasterViewController.swift

+ 1 - 1
Example/Source/MasterViewController.swift

@@ -78,7 +78,7 @@ class MasterViewController: UITableViewController {
                     return Alamofire.request("https://httpbin.org/delete", withMethod: .delete)
                 case "DOWNLOAD":
                     detailViewController.segueIdentifier = "DOWNLOAD"
-                    let destination = Alamofire.Request.suggestedDownloadDestination(
+                    let destination = DownloadRequest.suggestedDownloadDestination(
                         for: .cachesDirectory,
                         in: .userDomainMask
                     )