Skip to content

Commit

Permalink
Merge pull request #152 from michal-josef-spacek/gt-151
Browse files Browse the repository at this point in the history
GH#151: Fix running of Vicuna when network isn't running
  • Loading branch information
michal-josef-spacek committed Jul 7, 2021
2 parents af2d7a5 + bd0ed6a commit a1d89a0
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/main/java/cuploader/frames/FIntro.java
Expand Up @@ -4,6 +4,7 @@
import java.awt.Desktop;
import java.awt.Toolkit;
import java.io.IOException;
import java.io.UncheckedIOException;
import java.net.URI;
import java.net.URISyntaxException;
import java.net.URL;
Expand Down Expand Up @@ -221,6 +222,8 @@ private boolean checkVersion() {
tStatus.setText("<html><body>" + Data.text("about-checkupdate-text") + " (<b>" + v + "</b>).</body></html>");
return true;
} else return false;
} catch (UncheckedIOException ex) {
error("Cannot check for the new version", ex);
} catch (IOException ex) {
error("Cannot check for the new version", ex);
}
Expand Down

0 comments on commit a1d89a0

Please sign in to comment.