mirror of
https://github.com/wrwrabbit/Partisan-Telegram-Android.git
synced 2026-05-05 07:20:38 +00:00
Update to 8.6.2
This commit is contained in:
parent
5d5527525f
commit
0abe4541dd
116 changed files with 2864 additions and 1676 deletions
|
|
@ -1225,8 +1225,9 @@ public class NotificationsController extends BaseController {
|
|||
if (controller.showBadgeMessages) {
|
||||
if (controller.showBadgeMuted) {
|
||||
try {
|
||||
for (int i = 0, N = MessagesController.getInstance(a).allDialogs.size(); i < N; i++) {
|
||||
TLRPC.Dialog dialog = MessagesController.getInstance(a).allDialogs.get(i);
|
||||
final ArrayList<TLRPC.Dialog> dialogs = new ArrayList<>(MessagesController.getInstance(a).allDialogs);
|
||||
for (int i = 0, N = dialogs.size(); i < N; i++) {
|
||||
TLRPC.Dialog dialog = dialogs.get(i);
|
||||
if (dialog != null && DialogObject.isChatDialog(dialog.id)) {
|
||||
TLRPC.Chat chat = getMessagesController().getChat(-dialog.id);
|
||||
if (ChatObject.isNotInChat(chat)) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue