Skip to content

Commit

Permalink
Merge pull request #9 from blackadmin/patch-1
Browse files Browse the repository at this point in the history
Update BCDNStorage.java
  • Loading branch information
doghouch authored Jul 28, 2020
2 parents 4f479b4 + 2e86a4e commit a85e8f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BunnyCDN/src/BCDNStorage.java
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ private String sendRequest(String url, String method, File arg, boolean arg2, St
for (int a = 0; a < temp.length; a++) {
temp[a] = java.net.URLEncoder.encode(temp[a], "UTF-8").replace("+", "%20");
}
url = String.join("/", temp) + "/";
url = String.join("/", temp);
HttpsURLConnection req = (HttpsURLConnection) (new URL(BASE_URL + "/" + nameOfZone + "/" + url))
.openConnection();
req.setRequestMethod(method);
Expand Down

0 comments on commit a85e8f5

Please sign in to comment.