diff --git a/app/src/main/java/io/xpipe/app/grid/AppDownloads.java b/app/src/main/java/io/xpipe/app/grid/AppDownloads.java index 05f78ce9..c9cb2c59 100644 --- a/app/src/main/java/io/xpipe/app/grid/AppDownloads.java +++ b/app/src/main/java/io/xpipe/app/grid/AppDownloads.java @@ -31,7 +31,7 @@ public class AppDownloads { .withRateLimitHandler(RateLimitHandler.FAIL) .withAuthorizationProvider(AuthorizationProvider.ANONYMOUS) .build(); - repository = github.getRepository("xpipe-io/xpipe-app"); + repository = github.getRepository("xpipe-io/xpipe"); return repository; } diff --git a/app/src/main/resources/io/xpipe/app/resources/misc/welcome.md b/app/src/main/resources/io/xpipe/app/resources/misc/welcome.md index 00249a2c..32f2920f 100644 --- a/app/src/main/resources/io/xpipe/app/resources/misc/welcome.md +++ b/app/src/main/resources/io/xpipe/app/resources/misc/welcome.md @@ -8,7 +8,7 @@ It is currently in early development and this build is an alpha version. A lot of features are incomplete or bugged. You can overview and contribute to the development here: -#### [Issue Tracker](https://github.com/xpipe-io/xpipe-app/issues) +#### [Issue Tracker](https://github.com/xpipe-io/xpipe/issues) #### [Discord Server](https://discord.gg/8y89vS8cRb) diff --git a/extension/src/main/java/io/xpipe/extension/util/HttpHelper.java b/extension/src/main/java/io/xpipe/extension/util/HttpHelper.java index 62a5e06c..ee83b6e2 100644 --- a/extension/src/main/java/io/xpipe/extension/util/HttpHelper.java +++ b/extension/src/main/java/io/xpipe/extension/util/HttpHelper.java @@ -27,7 +27,7 @@ public class HttpHelper { // Create connection connection = (HttpURLConnection) targetURL.openConnection(); connection.setRequestMethod("GET"); - connection.addRequestProperty("User-Agent", "https://github.com/xpipe-io/xpipe-app"); + connection.addRequestProperty("User-Agent", "https://github.com/xpipe-io/xpipe"); connection.addRequestProperty("Accept", "*/*"); int responseCode = connection.getResponseCode();