limit text size in message adapter to 2k and also limit text size in conversations adapter

This commit is contained in:
Daniel Gultsch 2016-05-28 23:48:39 +02:00
parent 422fd1847f
commit aaf5233efe
2 changed files with 8 additions and 4 deletions

View File

@ -76,7 +76,7 @@ public final class Config {
public static final int REFRESH_UI_INTERVAL = 500;
public static final int MAX_DISPLAY_MESSAGE_CHARS = 5 * 1024;
public static final int MAX_DISPLAY_MESSAGE_CHARS = 2 * 1024;
public static final boolean DISABLE_PROXY_LOOKUP = false; //useful to debug ibb
public static final boolean DISABLE_HTTP_UPLOAD = false;

View File

@ -184,8 +184,12 @@ public class UIHelper {
return new Pair<>(getFileDescriptionString(context,message),true);
}
} else {
if (message.getBody().startsWith(Message.ME_COMMAND)) {
return new Pair<>(message.getBody().replaceAll("^" + Message.ME_COMMAND,
String body = message.getBody();
if (body.length() > 256) {
body = body.substring(0,256);
}
if (body.startsWith(Message.ME_COMMAND)) {
return new Pair<>(body.replaceAll("^" + Message.ME_COMMAND,
UIHelper.getMessageDisplayName(message) + " "), false);
} else if (GeoHelper.isGeoUri(message.getBody())) {
if (message.getStatus() == Message.STATUS_RECEIVED) {
@ -197,7 +201,7 @@ public class UIHelper {
return new Pair<>(context.getString(R.string.x_file_offered_for_download,
getFileDescriptionString(context,message)),true);
} else{
return new Pair<>(message.getBody().trim(), false);
return new Pair<>(body.trim(), false);
}
}
}