Skip to content

Commit

Permalink
fixed bug where files with special characters in filename could not b…
Browse files Browse the repository at this point in the history
…e assigned. close #2572
  • Loading branch information
j-dimension committed Sep 25, 2024
1 parent 5f184dc commit 17761d8
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1486,7 +1486,9 @@ public boolean saveToCaseCallback(String caseId, boolean withAttachments, boolea
if (newName == null) {
newName = "";
}
newName = FileUtils.sanitizeFileName(newName);

// do not change file name, because it is passed to the server in order to find the scan
//newName = FileUtils.sanitizeFileName(newName);

bulkEntry.setDocumentFilename(newName);
bulkSaveDlg.addEntry(bulkEntry);
Expand Down

0 comments on commit 17761d8

Please sign in to comment.