浏览代码

优化域名解析错误异常信息

drake 3 年之前
父节点
当前提交
38ef6553cf
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      net/src/main/java/com/drake/net/request/BaseRequest.kt

+ 1 - 1
net/src/main/java/com/drake/net/request/BaseRequest.kt

@@ -103,7 +103,7 @@ abstract class BaseRequest {
             try {
                 httpUrl = (NetConfig.host + path).toHttpUrl().newBuilder()
             } catch (e: Throwable) {
-                throw URLParseException(NetConfig.host.ifEmpty { "NetConfig.host is empty" }, e)
+                throw URLParseException(NetConfig.host + path, e)
             }
         } else {
             this.httpUrl = url.newBuilder()