Skip to content

Commit

Permalink
Load tracks from s3 URL after accessbility check igvteam#1101
Browse files Browse the repository at this point in the history
  • Loading branch information
qing-at-work committed Feb 7, 2022
1 parent 61a6c29 commit 4b8aed5
Showing 1 changed file with 3 additions and 2 deletions.
Expand Up @@ -97,9 +97,10 @@ public void actionPerformed(ActionEvent e) {
} catch (Exception ex) {
MessageUtils.showMessage("Error loading url: " + url + " (" + ex.toString() + ")");
}
} else if (url.startsWith("s3://")) {
checkAWSAccessbility(url);
} else {
if (url.startsWith("s3://")) {
checkAWSAccessbility(url);
}
ResourceLocator rl = new ResourceLocator(url.trim());

if (dlg.getIndexURL() != null) {
Expand Down

0 comments on commit 4b8aed5

Please sign in to comment.