Don't pass in sleuthkit case

This commit is contained in:
Ann Priestman 2018-10-26 08:55:13 -04:00
parent ba84b4c74b
commit af882afd42

View File

@ -205,7 +205,7 @@ class AddArchiveTask implements Runnable {
if (c instanceof DataSource) { if (c instanceof DataSource) {
DataSource ds = (DataSource) c; DataSource ds = (DataSource) c;
String newName = Paths.get(archivePath).getFileName() + "/" + ds.getName(); String newName = Paths.get(archivePath).getFileName() + "/" + ds.getName();
ds.setDisplayName(currentCase.getSleuthkitCase(), newName); ds.setDisplayName(newName);
} }
} }