mirror of
https://github.com/moparisthebest/Conversations
synced 2024-11-05 00:35:01 -05:00
limit text size in message adapter to 2k and also limit text size in conversations adapter
This commit is contained in:
parent
422fd1847f
commit
aaf5233efe
@ -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;
|
||||
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user