Skip to content
Snippets Groups Projects
Commit 44dd2cea authored by Brian Carrier's avatar Brian Carrier
Browse files

fixed name of calllog

parent c44eb707
No related branches found
No related tags found
No related merge requests found
...@@ -464,7 +464,7 @@ public List<JsonElement> exportBlackboardArtifact(BlackboardArtifact artifact) t ...@@ -464,7 +464,7 @@ public List<JsonElement> exportBlackboardArtifact(BlackboardArtifact artifact) t
} else if (TSK_MESSAGE.getTypeID() == artifactTypeId) { } else if (TSK_MESSAGE.getTypeID() == artifactTypeId) {
assembleMessage(uuid, artifact, output); assembleMessage(uuid, artifact, output);
} else if (TSK_CALLLOG.getTypeID() == artifactTypeId) { } else if (TSK_CALLLOG.getTypeID() == artifactTypeId) {
assembleCallog(uuid, artifact, output); assembleCallLog(uuid, artifact, output);
} else if (TSK_CALENDAR_ENTRY.getTypeID() == artifactTypeId) { } else if (TSK_CALENDAR_ENTRY.getTypeID() == artifactTypeId) {
assembleCalendarEntry(uuid, artifact, output); assembleCalendarEntry(uuid, artifact, output);
} else if (TSK_SPEED_DIAL_ENTRY.getTypeID() == artifactTypeId) { } else if (TSK_SPEED_DIAL_ENTRY.getTypeID() == artifactTypeId) {
...@@ -1000,7 +1000,7 @@ private void assembleMetadataExif(String uuid, BlackboardArtifact artifact, List ...@@ -1000,7 +1000,7 @@ private void assembleMetadataExif(String uuid, BlackboardArtifact artifact, List
serializeObjectToOutput(export, output); serializeObjectToOutput(export, output);
} }
private void assembleCallog(String uuid, BlackboardArtifact artifact, List<JsonElement> output) throws TskCoreException { private void assembleCallLog(String uuid, BlackboardArtifact artifact, List<JsonElement> output) throws TskCoreException {
ObservableObject fromNode = new BlankObservableObject() ObservableObject fromNode = new BlankObservableObject()
.addBundle(new PhoneAccountFacet() .addBundle(new PhoneAccountFacet()
.setPhoneNumber(getValueIfPresent(artifact, StandardAttributeTypes.TSK_PHONE_NUMBER_FROM))); .setPhoneNumber(getValueIfPresent(artifact, StandardAttributeTypes.TSK_PHONE_NUMBER_FROM)));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment