Prepare release 2.32.0

This commit is contained in:
tom79 2020-03-15 16:18:32 +01:00
parent 689feedd0e
commit 3ecf20f3f0
3 changed files with 0 additions and 5 deletions

View File

@ -762,8 +762,6 @@ public class API {
if( !resobj.isNull("in_reply_to_id") ) {
status.setIn_reply_to_id(resobj.get("in_reply_to_id").toString());
}else{
Helper.largeLog(resobj.toString());
}
if( !resobj.isNull("in_reply_to_account_id") ) {
status.setIn_reply_to_account_id(resobj.get("in_reply_to_account_id").toString());
@ -3333,7 +3331,6 @@ public class API {
try {
HttpsConnection httpsConnection = new HttpsConnection(context, this.instance);
String response = httpsConnection.get(String.format("https://" + instance + "/api/v1/videos/%s", videoId), 10, null, null);
Helper.largeLog(response);
JSONObject jsonObject = new JSONObject(response);
peertube = parseSinglePeertube(context, instance, jsonObject);
} catch (HttpsConnection.HttpsConnectionException e) {

View File

@ -262,7 +262,6 @@ public class GNUAPI {
}
//Retrieves mentions
List<Mention> mentions = new ArrayList<>();
Helper.largeLog(resobj.toString());
if (resobj.has("attentions")) {
JSONArray arrayMention = resobj.getJSONArray("attentions");
for (int j = 0; j < arrayMention.length(); j++) {

View File

@ -1176,7 +1176,6 @@ public class PeertubeAPI {
try {
HttpsConnection httpsConnection = new HttpsConnection(context, this.instance);
String response = httpsConnection.get(getAbsoluteUrl(action), 60, params, prefKeyOauthTokenT);
// Helper.largeLog(response);
if (!action.equals("/overviews/videos")) {
JSONArray values = new JSONObject(response).getJSONArray("data");
peertubes = parsePeertube(values);