Prepare for repo move

This commit is contained in:
crschnick 2023-02-02 13:46:40 +00:00
parent 90192b274c
commit 12bb4f744d
3 changed files with 3 additions and 3 deletions

View file

@ -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;
}

View file

@ -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)

View file

@ -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();