File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/main/java/de/jadenk/springcloud/service Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ public UpdateService(VersionService versionService) {
1919
2020 public boolean isUpdateAvailable () {
2121 try {
22- URL url = new URL ("https://api.github.com/repos/Verpxnter /SpringCloud/releases/latest" );
22+ URL url = new URL ("https://api.github.com/repos/jadnk /SpringCloud/releases/latest" );
2323 HttpURLConnection con = (HttpURLConnection ) url .openConnection ();
2424 con .setRequestMethod ("GET" );
2525 con .setRequestProperty ("Accept" , "application/vnd.github.v3+json" );
@@ -38,7 +38,7 @@ public boolean isUpdateAvailable() {
3838
3939 public String fetchLatestVersion () {
4040 try {
41- URL url = new URL ("https://api.github.com/repos/Verpxnter /SpringCloud/releases/latest" );
41+ URL url = new URL ("https://api.github.com/repos/jadnk /SpringCloud/releases/latest" );
4242 HttpURLConnection con = (HttpURLConnection ) url .openConnection ();
4343 con .setRequestMethod ("GET" );
4444 con .setRequestProperty ("Accept" , "application/vnd.github.v3+json" );
You can’t perform that action at this time.
0 commit comments