Update to 7.7.0 (2284)

This commit is contained in:
DrKLO 2021-04-14 04:44:46 +03:00
parent 7ba9838a2d
commit 8bf056e27b
209 changed files with 7639 additions and 2243 deletions

View file

@ -1404,6 +1404,8 @@ public class NotificationsController extends BaseController {
}
} else if (messageObject.messageOwner.action instanceof TLRPC.TL_messageActionGroupCall) {
return LocaleController.formatString("NotificationGroupCreatedCall", R.string.NotificationGroupCreatedCall, name, chat.title);
} else if (messageObject.messageOwner.action instanceof TLRPC.TL_messageActionGroupCallScheduled) {
return messageObject.messageText.toString();
} else if (messageObject.messageOwner.action instanceof TLRPC.TL_messageActionInviteToGroupCall) {
int singleUserId = messageObject.messageOwner.action.user_id;
if (singleUserId == 0 && messageObject.messageOwner.action.users.size() == 1) {
@ -2023,6 +2025,8 @@ public class NotificationsController extends BaseController {
}
} else if (messageObject.messageOwner.action instanceof TLRPC.TL_messageActionGroupCall) {
msg = LocaleController.formatString("NotificationGroupCreatedCall", R.string.NotificationGroupCreatedCall, name, chat.title);
} else if (messageObject.messageOwner.action instanceof TLRPC.TL_messageActionGroupCallScheduled) {
msg = messageObject.messageText.toString();
} else if (messageObject.messageOwner.action instanceof TLRPC.TL_messageActionInviteToGroupCall) {
int singleUserId = messageObject.messageOwner.action.user_id;
if (singleUserId == 0 && messageObject.messageOwner.action.users.size() == 1) {