Revert "Getting changelogs commit number 1"

This reverts commit e8a31cf867.
This commit is contained in:
LucasGGamerM
2022-12-25 14:21:09 -03:00
parent 2b2e4845a1
commit f0ea6ef43e
3 changed files with 0 additions and 27 deletions

View File

@@ -175,27 +175,6 @@ public class GithubSelfUpdaterImpl extends GithubSelfUpdater{
}
}
public String getChangelog(){
String changelog = null;
Request req=new Request.Builder()
.url("https://api.github.com/repos/LucasGGamerM/moshidon/releases/latest")
.build();
Call call=MastodonAPIController.getHttpClient().newCall(req);
try(Response resp=call.execute()){
JsonObject obj=JsonParser.parseReader(resp.body().charStream()).getAsJsonObject();
changelog=obj.get("body").getAsString();
if(changelog == null){
Log.w(TAG, "No changelog available");
return null;
}
return changelog;
}catch(Exception x){
Log.w(TAG, "getChangelog: ", x);
}
return changelog;
}
private void setState(UpdateState state){
this.state=state;
E.post(new SelfUpdateStateChangedEvent(state));