mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-19 11:07:43 +00:00
Merge pull request #1372 from karlmortensen/no_popup_for_unknown_paths
no popup when not interactive
This commit is contained in:
commit
82f1cfe4a5
@ -536,7 +536,7 @@ public class Case {
|
||||
String path = entry.getValue();
|
||||
boolean fileExists = (pathExists(path)
|
||||
|| driveExists(path));
|
||||
if (!fileExists) {
|
||||
if (!fileExists && IngestManager.getInstance().isRunningInteractively() == true) {
|
||||
int ret = JOptionPane.showConfirmDialog(null,
|
||||
NbBundle.getMessage(Case.class,
|
||||
"Case.checkImgExist.confDlg.doesntExist.msg",
|
||||
|
Loading…
x
Reference in New Issue
Block a user