Compare commits

..

1 Commits

Author SHA1 Message Date
sk
10a405ef13 change self updater api url 2022-11-01 21:38:30 +01:00
2 changed files with 3 additions and 3 deletions

View File

@@ -9,8 +9,8 @@ android {
applicationId "org.joinmastodon.android.sk"
minSdk 23
targetSdk 33
versionCode 22
versionName "1.1.3+fork.22"
versionCode 23
versionName "1.1.3+fork.23"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}

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()){