JAL-1551 spotlessApply
[jalview.git] / src / jalview / io / FileParse.java
index 2dec559..8d3283d 100755 (executable)
@@ -344,7 +344,7 @@ public class FileParse
     String encoding = _conn.getContentEncoding();
     String contentType = _conn.getContentType();
     boolean isgzipped = "application/x-gzip".equalsIgnoreCase(contentType)
-            || "gzip".equals(encoding);
+            || contentType.endsWith("gzip") || "gzip".equals(encoding);
     Exception e = null;
     InputStream inputStream = _conn.getInputStream();
     if (isgzipped)