Fix headers -> was only takes local headers if having global headers

This commit is contained in:
jeffcheasey88 2023-09-10 17:47:20 +02:00
parent b06ed20afd
commit eed1646a32
2 changed files with 10 additions and 6 deletions

View file

@ -34,11 +34,15 @@ public class Context{
}
public void response(int code, String... headers) throws Exception{
if(headers != null && headers.length > 0 && this.headers.length > 0){
if(headers != null && headers.length > 0){
if(this.headers.length > 0){
String[] copy = new String[this.headers.length+headers.length];
System.arraycopy(this.headers, 0, copy, 0, this.headers.length);
System.arraycopy(headers, 0, copy, this.headers.length, headers.length);
this.headers = copy;
}else{
this.headers = headers;
}
}
this.responseCode = code;
this.writer.response(code, this.headers);

View file

@ -41,7 +41,7 @@ public class HttpReader{
return this.socket.isClosed();
}
public void readHeaders() throws Exception{
void readHeaders() throws Exception{
String line;
while(((line = reader.readLine()) != null) && (line.length() > 0)){
Matcher matcher = HEADER_PATTERN.matcher(line);