We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f479b4 commit 2e86a4eCopy full SHA for 2e86a4e
BunnyCDN/src/BCDNStorage.java
@@ -70,7 +70,7 @@ private String sendRequest(String url, String method, File arg, boolean arg2, St
70
for (int a = 0; a < temp.length; a++) {
71
temp[a] = java.net.URLEncoder.encode(temp[a], "UTF-8").replace("+", "%20");
72
}
73
- url = String.join("/", temp) + "/";
+ url = String.join("/", temp);
74
HttpsURLConnection req = (HttpsURLConnection) (new URL(BASE_URL + "/" + nameOfZone + "/" + url))
75
.openConnection();
76
req.setRequestMethod(method);
0 commit comments