소스 검색

Wrong variable used

$proxy was used for $port
Grégoire Compagnon 7 년 전
부모
커밋
6ca397fbf3
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/Builder.php

+ 1 - 1
src/Builder.php

@@ -299,7 +299,7 @@ class Builder {
         $this->withOption( 'PROXY', $proxy );
 
         if( !empty($port) ) {
-            $this->withOption( 'PROXYPORT', $proxy );
+            $this->withOption( 'PROXYPORT', $port );
         }
 
         if( !empty($type) ) {