We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba690bd commit c87cddbCopy full SHA for c87cddb
http-client/src/main/java/io/avaje/http/client/DUrlBuilder.java
@@ -28,6 +28,7 @@ public UrlBuilder url(String url) {
28
public UrlBuilder path(String path) {
29
if (path.startsWith("http") && path.contains("://")) {
30
buffer.setLength(0);
31
+ buffer.append(path);
32
return this;
33
}
34
buffer.append("/").append(path);
0 commit comments