Skip to content

Commit

Permalink
Remove colors from URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
btk5h committed May 20, 2018
1 parent ecca22a commit 9b3724c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/btk5h/reqn/skript/EffRequest.java
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ private HttpResponse sendRequest(Event e) {
if (this.method != null) {
method = this.method.getSingle(e).toUpperCase();
}
String url = this.url.getSingle(e);
String url = this.url.getSingle(e).replace('§', '&');
String[] headers = EMPTY_STRING_ARRAY;
if (this.headers != null) {
headers = this.headers.getAll(e);
Expand Down

0 comments on commit 9b3724c

Please sign in to comment.