Skip to content

Commit

Permalink
Update FileUploadBase.java (#49)
Browse files Browse the repository at this point in the history
  • Loading branch information
elecharny committed Dec 20, 2020
1 parent 0b032b5 commit 283635b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -677,7 +677,7 @@ private void parseHeaderLine(final FileItemHeadersImpl headers, final String hea
}
final String headerName = header.substring(0, colonOffset).trim();
final String headerValue =
header.substring(header.indexOf(':') + 1).trim();
header.substring(colonOffset + 1).trim();
headers.addHeader(headerName, headerValue);
}

Expand Down

0 comments on commit 283635b

Please sign in to comment.