Skip to content

Commit

Permalink
Fix backported code
Browse files Browse the repository at this point in the history
  • Loading branch information
tmolitor-stud-tu committed Nov 9, 2024
1 parent 306a44f commit b7b4a79
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Monal/Classes/ActiveChatsViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -366,8 +366,8 @@ -(void) refreshDisplay
BOOL found = NO;
for(NSDictionary* accountDict in [[DataLayer sharedInstance] enabledAccountList])
{
NSNumber* accountID = accountDict[kAccountID];
if([MLNotificationManager sharedInstance].currentContact.accountID.intValue == accountID.intValue)
NSNumber* accountNo = accountDict[kAccountID];
if([MLNotificationManager sharedInstance].currentContact.accountNo.intValue == accountNo.intValue)
found = YES;
}
if(!found)
Expand Down

0 comments on commit b7b4a79

Please sign in to comment.