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)));
|
hostDataMap.forEach((K, V) -> data.add(buildHostData(K, V)));
|
||||||
}
|
}
|
||||||
|
|
||||||
OsAccountRealm realm = account.getRealm();
|
// TODO - load realm on background thread
|
||||||
if (realm != null) {
|
//OsAccountRealm realm = account.getRealm();
|
||||||
data.add(buildRealmProperties(realm));
|
//if (realm != null) {
|
||||||
}
|
// data.add(buildRealmProperties(realm));
|
||||||
|
//}
|
||||||
|
|
||||||
Map<Host, DataSource> instanceMap = results.getDataSourceMap();
|
Map<Host, DataSource> instanceMap = results.getDataSourceMap();
|
||||||
if (!instanceMap.isEmpty()) {
|
if (!instanceMap.isEmpty()) {
|
||||||
|
@ -256,7 +256,9 @@ public final class OsAccounts implements AutopsyVisitableItem {
|
|||||||
Bundle.OsAccounts_loginNameProperty_desc(),
|
Bundle.OsAccounts_loginNameProperty_desc(),
|
||||||
optional.isPresent() ? optional.get() : ""));
|
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<>(
|
propertiesSet.put(new NodeProperty<>(
|
||||||
Bundle.OsAccounts_accountRealmNameProperty_name(),
|
Bundle.OsAccounts_accountRealmNameProperty_name(),
|
||||||
Bundle.OsAccounts_accountRealmNameProperty_displayName(),
|
Bundle.OsAccounts_accountRealmNameProperty_displayName(),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user