瀏覽代碼

Merge pull request #66 from rkeniger/rob/fix-curl-url

Fix the URL written to the cURL debug string
Mattt Thompson 11 年之前
父節點
當前提交
4a38a22f7d
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Source/Alamofire.swift

+ 1 - 1
Source/Alamofire.swift

@@ -833,7 +833,7 @@ extension Request: DebugPrintable {
 
         // TODO: -T arguments for files
 
-        components.append("\"\(URL.absoluteString)\"")
+        components.append("\"\(URL.absoluteString!)\"")
 
         return join(" \\\n\t", components)
     }