From d7550ffe50be14abd1041c5c1cad636e915b0ef7 Mon Sep 17 00:00:00 2001 From: Thilo Molitor Date: Sat, 4 Jan 2025 16:19:13 +0100 Subject: [PATCH] Fix backported code --- Monal/Classes/chatViewController.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Monal/Classes/chatViewController.m b/Monal/Classes/chatViewController.m index 7f6a1d33d..6a813c6e1 100644 --- a/Monal/Classes/chatViewController.m +++ b/Monal/Classes/chatViewController.m @@ -237,7 +237,7 @@ -(void) viewDidLoad [self updateCallButtonImage]; //ping this muc on open, to make sure we are still joined - if([[[DataLayer sharedInstance] listMucsForAccount:self.contact.accountID] containsObject:self.contact.contactJid]) + if([[[DataLayer sharedInstance] listMucsForAccount:self.contact.accountId] containsObject:self.contact.contactJid]) [self.xmppAccount.mucProcessor ping:self.contact.contactJid]; }