Updated the getRelationshipsCount() method call to match the new API definition.

This commit is contained in:
Raman 2017-11-02 13:01:38 -04:00
parent 4a95926de7
commit 670ade9b0e

View File

@ -115,7 +115,7 @@ class AccountsRootChildren extends Children.Keys<AccountDeviceInstanceKey> {
}
long msgCount = 0;
try {
msgCount = commsManager.getRelationshipsCount(filter, accountDeviceInstance);
msgCount = commsManager.getRelationshipsCount(accountDeviceInstance.getAccount(), filter );
} catch (TskCoreException ex) {
LOGGER.log(Level.WARNING, "Failed to get message count for account", ex); //NON-NLS
}