mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-06 21:00:22 +00:00
Merge pull request #6821 from APriestman/realmid_4228_changes
Temporary change to not load the realm
This commit is contained in:
commit
a081bdd4e0
@ -412,10 +412,11 @@ public class OsAccountDataPanel extends JPanel {
|
||||
hostDataMap.forEach((K, V) -> data.add(buildHostData(K, V)));
|
||||
}
|
||||
|
||||
OsAccountRealm realm = account.getRealm();
|
||||
if (realm != null) {
|
||||
data.add(buildRealmProperties(realm));
|
||||
}
|
||||
// TODO - load realm on background thread
|
||||
//OsAccountRealm realm = account.getRealm();
|
||||
//if (realm != null) {
|
||||
// data.add(buildRealmProperties(realm));
|
||||
//}
|
||||
|
||||
Map<Host, DataSource> instanceMap = results.getDataSourceMap();
|
||||
if (!instanceMap.isEmpty()) {
|
||||
|
@ -256,7 +256,9 @@ public final class OsAccounts implements AutopsyVisitableItem {
|
||||
Bundle.OsAccounts_loginNameProperty_desc(),
|
||||
optional.isPresent() ? optional.get() : ""));
|
||||
|
||||
String realmName = account.getRealm().getRealmNames().isEmpty() ? "" : account.getRealm().getRealmNames().get(0);
|
||||
// TODO - load realm on background thread
|
||||
String realmName = "";
|
||||
//String realmName = account.getRealm().getRealmNames().isEmpty() ? "" : account.getRealm().getRealmNames().get(0);
|
||||
propertiesSet.put(new NodeProperty<>(
|
||||
Bundle.OsAccounts_accountRealmNameProperty_name(),
|
||||
Bundle.OsAccounts_accountRealmNameProperty_displayName(),
|
||||
|
Loading…
x
Reference in New Issue
Block a user