From 4dcd490c991a4c04e2b60dbde6a6c211018690bf Mon Sep 17 00:00:00 2001 From: Brian Carrier <carrier@sleuthkit.org> Date: Sat, 13 Oct 2018 23:03:25 -0400 Subject: [PATCH] fixed typo in account type --- bindings/java/src/org/sleuthkit/datamodel/Account.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/java/src/org/sleuthkit/datamodel/Account.java b/bindings/java/src/org/sleuthkit/datamodel/Account.java index d281736cf..647e7397e 100644 --- a/bindings/java/src/org/sleuthkit/datamodel/Account.java +++ b/bindings/java/src/org/sleuthkit/datamodel/Account.java @@ -51,7 +51,7 @@ public static final class Type { public static final Account.Type FACEBOOK = new Type("FACEBOOK", "Facebook"); public static final Account.Type TWITTER = new Type("TWITTER", "Twitter"); public static final Account.Type INSTAGRAM = new Type("INSTAGRAM", "Instagram"); - public static final Account.Type WHATSAPP = new Type("WHATSAPP", "Facebook"); + public static final Account.Type WHATSAPP = new Type("WHATSAPP", "WhatsApp"); public static final Account.Type MESSAGING_APP = new Type("MESSAGING_APP", "MessagingApp"); public static final Account.Type WEBSITE = new Type("WEBSITE", "Website"); -- GitLab