소스 검색

updte download cdn ip getter

billyyoyo 6 년 전
부모
커밋
a594321cf0
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      app/src/main/java/com/sheep/gamegroup/util/SheepDownloadConnection.java

+ 1 - 1
app/src/main/java/com/sheep/gamegroup/util/SheepDownloadConnection.java

@@ -126,7 +126,7 @@ public class SheepDownloadConnection implements DownloadConnection, DownloadConn
         String ip = NetUtil.getUrlIp(connection);
         if ("0.0.0.0".equals(ip)) {
             try {
-                InetSocketAddress address = new InetSocketAddress(url.getHost(), url.getPort());
+                InetSocketAddress address = new InetSocketAddress(url.getHost(), 80);
                 ip = address.getAddress().getHostAddress();
             } catch (Exception e) {
                 e.printStackTrace();