Skip to content

Commit 9b3724c

Browse files
committed
Remove colors from URLs
1 parent ecca22a commit 9b3724c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/btk5h/reqn/skript/EffRequest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ private HttpResponse sendRequest(Event e) {
139139
if (this.method != null) {
140140
method = this.method.getSingle(e).toUpperCase();
141141
}
142-
String url = this.url.getSingle(e);
142+
String url = this.url.getSingle(e).replace('§', '&');
143143
String[] headers = EMPTY_STRING_ARRAY;
144144
if (this.headers != null) {
145145
headers = this.headers.getAll(e);

0 commit comments

Comments
 (0)