From a90f26a37ad322fe7431fc5f56577c4714c4f477 Mon Sep 17 00:00:00 2001 From: LucasGGamerM Date: Tue, 6 Dec 2022 19:20:47 -0300 Subject: [PATCH] Setting update client --- .../org/joinmastodon/android/updater/GithubSelfUpdaterImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mastodon/src/github/java/org/joinmastodon/android/updater/GithubSelfUpdaterImpl.java b/mastodon/src/github/java/org/joinmastodon/android/updater/GithubSelfUpdaterImpl.java index f0ac674c0..e7dbe21cb 100644 --- a/mastodon/src/github/java/org/joinmastodon/android/updater/GithubSelfUpdaterImpl.java +++ b/mastodon/src/github/java/org/joinmastodon/android/updater/GithubSelfUpdaterImpl.java @@ -111,7 +111,7 @@ public class GithubSelfUpdaterImpl extends GithubSelfUpdater{ private void actuallyCheckForUpdates(){ Request req=new Request.Builder() - .url("https://api.github.com/repos/sk22/megalodon/releases/latest") + .url("https://api.github.com/repos/LucasGGamerM/moshidon/releases/latest") .build(); Call call=MastodonAPIController.getHttpClient().newCall(req); try(Response resp=call.execute()){