Skip to content

Commit

Permalink
Merge pull request #50 from imagejan/patch-1
Browse files Browse the repository at this point in the history
Fix Fiji update site check
  • Loading branch information
hinerm committed Aug 13, 2015
2 parents 0fc6c12 + c9e737d commit 419f313
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/net/imagej/updater/util/AvailableSites.java
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ public static Map<String, UpdateSite> getAvailableSites() throws IOException {
}
if (!iter.hasNext()) throw new IOException("Invalid page: " + SITE_LIST_PAGE_TITLE);
site = iter.next();
if (!site.getName().equals("Fiji") || !site.getURL().equals("http://fiji.sc/update/")) {
if (!site.getName().equals("Fiji") || !site.getURL().equals("http://update.fiji.sc/")) {
throw new IOException("Invalid page: " + SITE_LIST_PAGE_TITLE);
}

Expand Down

0 comments on commit 419f313

Please sign in to comment.