1
0
mirror of https://github.com/MGislv/NekoX.git synced 2024-06-30 22:22:57 +00:00

Increase limit to linkify phone numbers from 100 to 200

100 symbols is too few to make sending phone cards (not telegram users' cards, but any phone cards).
This commit is contained in:
Kondra007 2016-01-04 15:33:40 +03:00
parent 6033ee2f5c
commit 2391a60ada

View File

@ -782,7 +782,7 @@ public class MessageObject {
public static void addLinks(CharSequence messageText, boolean botCommands) {
if (messageText instanceof Spannable && containsUrls(messageText)) {
if (messageText.length() < 100) {
if (messageText.length() < 200) {
try {
Linkify.addLinks((Spannable) messageText, Linkify.WEB_URLS | Linkify.PHONE_NUMBERS);
} catch (Exception e) {