Skip to content
Snippets Groups Projects
Commit 9eacd687 authored by Richard Cordovano's avatar Richard Cordovano
Browse files

Remove non-exsitent column for SQL query in COmmunicationsManager.getAccountType

parent 6b9ab9c7
No related branches found
No related tags found
No related merge requests found
......@@ -565,7 +565,7 @@ public org.sleuthkit.datamodel.Account.Type getAccountType(String accountTypeNam
try {
s = connection.createStatement();
rs = connection.executeQuery(s, "SELECT account_type_id, type_name, display_name, value_type FROM account_types WHERE type_name = '" + accountTypeName + "'"); //NON-NLS
rs = connection.executeQuery(s, "SELECT account_type_id, type_name, display_name FROM account_types WHERE type_name = '" + accountTypeName + "'"); //NON-NLS
Account.Type accountType = null;
if (rs.next()) {
accountType = new Account.Type(accountTypeName, rs.getString("display_name"));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment