Skip to content

Commit

Permalink
fix multiple upload
Browse files Browse the repository at this point in the history
  • Loading branch information
erickgonzalez committed Sep 27, 2023
1 parent 6eea94a commit c058647
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,9 @@ private void testString(final String lineToTest) {
}

final String fileName = ContentDispositionFileNameParser.parse(lineToTestLower);
if (fileName == null) {
return;
}
securityUtils.validateFile(fileName);
}
}

0 comments on commit c058647

Please sign in to comment.