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:
aada6c7
)
JAL-3757 JAL-3689 Fixed checks for URLs by adding checks for https:// as well as...
author
Ben Soares
<b.soares@dundee.ac.uk>
Wed, 23 Sep 2020 22:41:36 +0000
(23:41 +0100)
committer
Ben Soares
<b.soares@dundee.ac.uk>
Wed, 23 Sep 2020 22:41:36 +0000
(23:41 +0100)
src/jalview/bin/Jalview.java
patch
|
blob
|
history
diff --git
a/src/jalview/bin/Jalview.java
b/src/jalview/bin/Jalview.java
index
eaa5fa8
..
7ad7320
100755
(executable)
--- a/
src/jalview/bin/Jalview.java
+++ b/
src/jalview/bin/Jalview.java
@@
-65,6
+65,7
@@
import jalview.io.NewickFile;
import jalview.io.gff.SequenceOntologyFactory;
import jalview.schemes.ColourSchemeI;
import jalview.schemes.ColourSchemeProperty;
+import jalview.util.HttpUtils;
import jalview.util.MessageManager;
import jalview.util.Platform;
import jalview.ws.jws2.Jws2Discoverer;
@@
-692,7
+693,7
@@
public class Jalview
protocol = DataSourceType.FILE;
- if (file.indexOf("http:") > -1)
+ if (HttpUtils.startsWithHttpOrHttps(file))
{
protocol = DataSourceType.URL;
}