Skip to content

Commit bab9943

Browse files
committed
update to 9.5.6
1 parent 5e5b765 commit bab9943

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

‎TMessagesProj/src/main/java/org/telegram/messenger/AndroidUtilities.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -638,7 +638,7 @@ private static void gatherLinks(ArrayList<LinkSpec> links, Spannable s, Pattern
638638
if (TextUtils.indexOf(s, '─') >= 0) {
639639
s = new SpannableStringBuilder(s.toString().replace('─', ' '));
640640
}
641-
if (TextUtils.lastIndexOf(s, '_') == s.length() - 1) {
641+
if (!TextUtils.isEmpty(s) && TextUtils.lastIndexOf(s, '_') == s.length() - 1) {
642642
//fix infinity loop regex
643643
SpannableStringBuilder spannableStringBuilder = new SpannableStringBuilder(s.toString());
644644
s = spannableStringBuilder.replace(s.length() - 1, s.length(), "a");

‎TMessagesProj/src/main/java/org/telegram/messenger/BuildVars.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ public class BuildVars {
2424
public static boolean USE_CLOUD_STRINGS = true;
2525
public static boolean CHECK_UPDATES = true;
2626
public static boolean NO_SCOPED_STORAGE = Build.VERSION.SDK_INT <= 29;
27-
public static int BUILD_VERSION = 3236;
28-
public static String BUILD_VERSION_STRING = "9.5.5";
27+
public static int BUILD_VERSION = 3237;
28+
public static String BUILD_VERSION_STRING = "9.5.6";
2929
public static int APP_ID = 4;
3030
public static String APP_HASH = "014b35b6184100b085b0d0572f9b5103";
3131

‎TMessagesProj/src/main/res/raw/utyan_cache.json

+1
Large diffs are not rendered by default.

‎gradle.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
1414
# org.gradle.parallel=true
1515
#Sat Mar 12 05:53:50 MSK 2016
16-
APP_VERSION_CODE=3236
17-
APP_VERSION_NAME=9.5.5
16+
APP_VERSION_CODE=3237
17+
APP_VERSION_NAME=9.5.6
1818
APP_PACKAGE=org.telegram.messenger
1919
RELEASE_KEY_PASSWORD=android
2020
RELEASE_KEY_ALIAS=androidkey

0 commit comments

Comments
 (0)