Limited shared message size

This commit is contained in:
M66B 2021-09-23 15:58:28 +02:00
parent 7adce05e43
commit 27ff9b3e31
1 changed files with 1 additions and 1 deletions

View File

@ -5222,7 +5222,7 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
String link = "message://" + BuildConfig.APPLICATION_ID + "/" + message.id;
Document document = JsoupEx.parse(file);
HtmlHelper.quoteLimit(document, MAX_QUOTE_LEVEL);
HtmlHelper.truncate(document, HtmlHelper.MAX_FULL_TEXT_SIZE / 2);
Element a = document.createElement("a");
a.text(context.getString(R.string.app_name));