From 3e09e9c25ff0ee8916b7fcf1d5ab1ba4ea81adfd Mon Sep 17 00:00:00 2001 From: adam-m Date: Fri, 15 Mar 2013 19:13:28 -0400 Subject: [PATCH] add tgz ext for archive icons --- .../src/org/sleuthkit/autopsy/datamodel/FileTypeExtensions.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/src/org/sleuthkit/autopsy/datamodel/FileTypeExtensions.java b/Core/src/org/sleuthkit/autopsy/datamodel/FileTypeExtensions.java index 0dced5e9fa..74a54ef66e 100644 --- a/Core/src/org/sleuthkit/autopsy/datamodel/FileTypeExtensions.java +++ b/Core/src/org/sleuthkit/autopsy/datamodel/FileTypeExtensions.java @@ -18,7 +18,7 @@ public class FileTypeExtensions { private final static List TEXT_EXTENSIONS = Arrays.asList(".txt", ".rtf", ".log", ".text", ".xml"); private final static List WEB_EXTENSIONS = Arrays.asList(".html", ".htm", ".css", ".js", ".php", ".aspx"); private final static List PDF_EXTENSIONS = Arrays.asList(".pdf"); - private final static List ARCHIVE_EXTENSIONS = Arrays.asList(".zip", ".rar", ".7zip", ".7z", ".arj", ".tar", ".gzip", ".bzip", ".bzip2", ".cab", ".jar", ".cpio", ".ar", ".gz"); + private final static List ARCHIVE_EXTENSIONS = Arrays.asList(".zip", ".rar", ".7zip", ".7z", ".arj", ".tar", ".gzip", ".bzip", ".bzip2", ".cab", ".jar", ".cpio", ".ar", ".gz", ".tgz"); public static List getImageExtensions() { return IMAGE_EXTENSIONS;