mirror of
https://github.com/oxen-io/session-android.git
synced 2024-12-24 16:57:50 +00:00
Enable the sending of long messages.
This commit is contained in:
parent
cfdcd61e51
commit
ccfcfa71df
@ -173,9 +173,7 @@
|
||||
<item name="android:padding">2dp</item>
|
||||
<item name="android:background">@null</item>
|
||||
<item name="android:maxLines">4</item>
|
||||
<!-- TODO: Switch to 64kb to enable long message sending. -->
|
||||
<!--<item name="android:maxLength">65536</item>-->
|
||||
<item name="android:maxLength">2000</item>
|
||||
<item name="android:maxLength">65536</item>
|
||||
<item name="android:textColor">?conversation_item_sent_text_primary_color</item>
|
||||
<item name="android:capitalize">sentences</item>
|
||||
<item name="android:autoText">true</item>
|
||||
|
@ -17,9 +17,7 @@
|
||||
package org.thoughtcrime.securesms.util;
|
||||
|
||||
public class PushCharacterCalculator extends CharacterCalculator {
|
||||
// TODO: Switch to 64kb to enable long message sending.
|
||||
// private static final int MAX_TOTAL_SIZE = 64 * 1024;
|
||||
private static final int MAX_TOTAL_SIZE = 2000;
|
||||
private static final int MAX_TOTAL_SIZE = 64 * 1024;
|
||||
private static final int MAX_PRIMARY_SIZE = 2000;
|
||||
@Override
|
||||
public CharacterState calculateCharacters(String messageBody) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user