Skip to content

Commit e125cf2

Browse files
committed
GitHub Version checker fixxed
1 parent 7a23498 commit e125cf2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/de/jadenk/springcloud/service/UpdateService.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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");

0 commit comments

Comments
 (0)