mirror of
https://github.com/DrKLO/Telegram.git
synced 2024-12-22 06:25:14 +01:00
Update to 6.1.1 (1947)
This commit is contained in:
parent
5a2a813dc0
commit
f120800a7f
4 changed files with 22 additions and 18 deletions
|
@ -286,7 +286,7 @@ android {
|
|||
}
|
||||
}
|
||||
|
||||
defaultConfig.versionCode = 1946
|
||||
defaultConfig.versionCode = 1947
|
||||
|
||||
def tgVoipDexFileName = "libtgvoip.dex"
|
||||
def tgVoipDexClasses = ["AudioRecordJNI", "AudioTrackJNI", "NativeTgVoipDelegate", "NativeTgVoipInstance", "TgVoipNativeLoader", "Resampler", "VLog"]
|
||||
|
|
|
@ -19,7 +19,7 @@ public class BuildVars {
|
|||
public static boolean USE_CLOUD_STRINGS = true;
|
||||
public static boolean CHECK_UPDATES = true;
|
||||
public static boolean TON_WALLET_STANDALONE = false;
|
||||
public static int BUILD_VERSION = 1946;
|
||||
public static int BUILD_VERSION = 1947;
|
||||
public static String BUILD_VERSION_STRING = "6.1.0";
|
||||
public static int APP_ID = 4;
|
||||
public static String APP_HASH = "014b35b6184100b085b0d0572f9b5103";
|
||||
|
|
|
@ -418,14 +418,16 @@ public class ChatAttachAlertPollLayout extends ChatAttachAlert.AttachAlertLayout
|
|||
params.put("answers", Utilities.bytesToHex(serializedData.toByteArray()));
|
||||
poll.results = new TLRPC.TL_pollResults();
|
||||
CharSequence solution = getFixedString(solutionString);
|
||||
poll.results.solution = solution.toString();
|
||||
CharSequence[] message = new CharSequence[]{solution};
|
||||
ArrayList<TLRPC.MessageEntity> entities = MediaDataController.getInstance(parentAlert.currentAccount).getEntities(message, true);
|
||||
if (entities != null && !entities.isEmpty()) {
|
||||
poll.results.solution_entities = entities;
|
||||
}
|
||||
if (!TextUtils.isEmpty(poll.results.solution)) {
|
||||
poll.results.flags |= 16;
|
||||
if (solution != null) {
|
||||
poll.results.solution = solution.toString();
|
||||
CharSequence[] message = new CharSequence[]{solution};
|
||||
ArrayList<TLRPC.MessageEntity> entities = MediaDataController.getInstance(parentAlert.currentAccount).getEntities(message, true);
|
||||
if (entities != null && !entities.isEmpty()) {
|
||||
poll.results.solution_entities = entities;
|
||||
}
|
||||
if (!TextUtils.isEmpty(poll.results.solution)) {
|
||||
poll.results.flags |= 16;
|
||||
}
|
||||
}
|
||||
ChatActivity chatActivity = (ChatActivity) parentAlert.baseFragment;
|
||||
if (chatActivity.isInScheduleMode()) {
|
||||
|
|
|
@ -229,14 +229,16 @@ public class PollCreateActivity extends BaseFragment {
|
|||
params.put("answers", Utilities.bytesToHex(serializedData.toByteArray()));
|
||||
poll.results = new TLRPC.TL_pollResults();
|
||||
CharSequence solution = ChatAttachAlertPollLayout.getFixedString(solutionString);
|
||||
poll.results.solution = solution.toString();
|
||||
CharSequence[] message = new CharSequence[]{solution};
|
||||
ArrayList<TLRPC.MessageEntity> entities = getMediaDataController().getEntities(message, true);
|
||||
if (entities != null && !entities.isEmpty()) {
|
||||
poll.results.solution_entities = entities;
|
||||
}
|
||||
if (!TextUtils.isEmpty(poll.results.solution)) {
|
||||
poll.results.flags |= 16;
|
||||
if (solution != null) {
|
||||
poll.results.solution = solution.toString();
|
||||
CharSequence[] message = new CharSequence[]{solution};
|
||||
ArrayList<TLRPC.MessageEntity> entities = getMediaDataController().getEntities(message, true);
|
||||
if (entities != null && !entities.isEmpty()) {
|
||||
poll.results.solution_entities = entities;
|
||||
}
|
||||
if (!TextUtils.isEmpty(poll.results.solution)) {
|
||||
poll.results.flags |= 16;
|
||||
}
|
||||
}
|
||||
if (parentFragment.isInScheduleMode()) {
|
||||
AlertsCreator.createScheduleDatePickerDialog(getParentActivity(), parentFragment.getDialogId(), (notify, scheduleDate) -> {
|
||||
|
|
Loading…
Reference in a new issue