Skip to content

Commit 7735b38

Browse files
Parse URL query parameters during multipart request handling
1 parent 702b78a commit 7735b38

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ng-adaptor-jetty/src/main/java/ng/adaptor/jetty/NGAdaptorJetty.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,8 @@ private static MultiPartConfig multiPartConfig() {
235235
private static NGRequest multipartRequestToNGRequest( final Request jettyRequest, final String contentType, final Callback callback ) {
236236

237237
// Regular formValues to set on the request
238-
final Map<String, List<String>> formValues = new HashMap<>();
238+
// FIXME: Verify that we're doing the right thing with query parameters here // Hugi 2025-07-19
239+
final Map<String, List<String>> formValues = formValuesFromRequest( jettyRequest );
239240

240241
// Uploaded files to set on the request
241242
final Map<String, UploadedFile> uploadedFiles = new HashMap<>();

0 commit comments

Comments
 (0)