git://source.jalview.org
/
jalview.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7a75c93
)
Patch for JAL-4074 - any content ending in ‘gzip’ recognised as a gzipped stream...
author
Jim Procter
<j.procter@dundee.ac.uk>
Thu, 6 Oct 2022 11:19:13 +0000
(12:19 +0100)
committer
Jim Procter
<j.procter@dundee.ac.uk>
Thu, 6 Oct 2022 11:19:13 +0000
(12:19 +0100)
src/jalview/io/FileParse.java
patch
|
blob
|
history
diff --git
a/src/jalview/io/FileParse.java
b/src/jalview/io/FileParse.java
index
2dec559
..
d3a6ba9
100755
(executable)
--- a/
src/jalview/io/FileParse.java
+++ b/
src/jalview/io/FileParse.java
@@
-343,7
+343,7
@@
public class FileParse
}
String encoding = _conn.getContentEncoding();
String contentType = _conn.getContentType();
- boolean isgzipped = "application/x-gzip".equalsIgnoreCase(contentType)
+ boolean isgzipped = "application/x-gzip".equalsIgnoreCase(contentType) || contentType.endsWith("gzip")
|| "gzip".equals(encoding);
Exception e = null;
InputStream inputStream = _conn.getInputStream();