소스 검색

Output the URL in the cURL debug string as the value of the optional, not the optional itself

Rob Keniger 11 년 전
부모
커밋
72e0f17fa1
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)
     }