change self updater api url

This commit is contained in:
sk
2022-11-01 21:38:19 +01:00
parent a4cb05080a
commit 10a405ef13
2 changed files with 3 additions and 3 deletions

View File

@@ -103,7 +103,7 @@ public class GithubSelfUpdaterImpl extends GithubSelfUpdater{
private void actuallyCheckForUpdates(){
Request req=new Request.Builder()
.url("https://api.github.com/repos/mastodon/mastodon-android/releases/latest")
.url("https://api.github.com/repos/sk22/mastodon-android-fork/releases/latest")
.build();
Call call=MastodonAPIController.getHttpClient().newCall(req);
try(Response resp=call.execute()){