Skip to content

Commit

Permalink
fix NPE due to missing folder initialization in bulk save dialog. close
Browse files Browse the repository at this point in the history
  • Loading branch information
j-dimension committed Nov 28, 2024
1 parent 86822eb commit 986fcbd
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1182,6 +1182,7 @@ private void cmdSaveConfirmActionPerformed(java.awt.event.ActionEvent evt) {//GE
try {
locator = JLawyerServiceLocator.getInstance(settings.getLookupProperties());
targetCase=locator.lookupArchiveFileServiceRemote().getArchiveFileByFileNumber(archiveFileNumber);
bulkSaveDlg.setCaseFolder(targetCase.getRootFolder(), targetCase.getRootFolder());
} catch (Exception ex) {
log.error("Error getting case by reference number", ex);
}
Expand Down

0 comments on commit 986fcbd

Please sign in to comment.