Details
Description
In a few places, a filename is detected as being a URL by checking
fileName.startsWith("http://")
when it should be
fileName.startsWith("http://") || fileName.startsWith("https://")
These should be fixed.
fileName.startsWith("http://")
when it should be
fileName.startsWith("http://") || fileName.startsWith("https://")
These should be fixed.
Attachments
Issue Links
- blocks
-
JAL-3757 Fresh install of Jalview 2.11.1.1 reports "Encountered problems opening https://www.jalview.org/examples/exampleFile_2_7.jvp
- Closed